diff options
author | Martin Fischer <martin@push-f.com> | 2021-11-21 12:23:09 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2021-11-21 19:52:57 +0100 |
commit | 23fcd4ef079ad2b4aed69b4f363cbb9e7102c4ed (patch) | |
tree | 2fbf27f77274df35b31504e9b6cde5ed0a53455c /ui-tests/src/bin/gats.rs | |
parent | 57641e00d6ed1fd7689c3079abb10f67d5387143 (diff) |
add ui tests (inspired by trybuild)
Diffstat (limited to 'ui-tests/src/bin/gats.rs')
-rw-r--r-- | ui-tests/src/bin/gats.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ui-tests/src/bin/gats.rs b/ui-tests/src/bin/gats.rs new file mode 100644 index 0000000..ca75563 --- /dev/null +++ b/ui-tests/src/bin/gats.rs @@ -0,0 +1,8 @@ +#[dynamize::dynamize] +pub trait MyTrait { + type A<'a>: Into<&'a str>; + + fn test1<'b>(&self) -> Self::A<'b>; +} + +fn main() {} |