diff options
author | SoniEx2 <endermoneymod@gmail.com> | 2021-03-22 20:50:59 -0300 |
---|---|---|
committer | SoniEx2 <endermoneymod@gmail.com> | 2021-03-22 20:52:47 -0300 |
commit | 5bb562ad496f9ec42ec59abfe31d3576266c6a6d (patch) | |
tree | 4c792fcc67d4211c6c5b4a0e18ebb832b0d4ce66 /tests/99-goal.rs |
Initial commit
Diffstat (limited to 'tests/99-goal.rs')
-rw-r--r-- | tests/99-goal.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/99-goal.rs b/tests/99-goal.rs new file mode 100644 index 0000000..117d70b --- /dev/null +++ b/tests/99-goal.rs @@ -0,0 +1,17 @@ +// Checks that #[impl_trait] works with generics. + +use impl_trait::impl_trait; + +struct Foo<T>(T); + +impl_trait! { + impl<T> Foo<T> where T: Default { + impl trait Default { + fn default() -> Self { + Self(T::default()) + } + } + } +} + +fn main() {} |