diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/tests.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/tests.rs b/tests/tests.rs index e30b0ef..e3df519 100644 --- a/tests/tests.rs +++ b/tests/tests.rs @@ -35,6 +35,8 @@ fn it_works() { #[allow(clippy::type_complexity)] fn test10(&self) -> (Self::A, (Self::A, Self::B), Self::B); + fn test11(&self) -> <Self as MyTrait>::A; + // fn test9(&self) -> &dyn Iterator<Item = Self::A>; fn mut1(&mut self) -> Self::A; |