From f1e62501c3de7932396d29c89588ff296bbcc50d Mon Sep 17 00:00:00 2001 From: Evgenii P Date: Sun, 11 Aug 2019 16:56:05 +0700 Subject: Fix for<'lifetime> for types specified by path --- crates/ra_syntax/test_data/parser/inline/ok/0081_for_type.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'crates/ra_syntax/test_data/parser/inline/ok/0081_for_type.rs') diff --git a/crates/ra_syntax/test_data/parser/inline/ok/0081_for_type.rs b/crates/ra_syntax/test_data/parser/inline/ok/0081_for_type.rs index 7cde5c532..d6774d438 100644 --- a/crates/ra_syntax/test_data/parser/inline/ok/0081_for_type.rs +++ b/crates/ra_syntax/test_data/parser/inline/ok/0081_for_type.rs @@ -1,3 +1,4 @@ type A = for<'a> fn() -> (); fn foo(_t: &T) where for<'a> &'a T: Iterator {} fn bar(_t: &T) where for<'a> &'a mut T: Iterator {} +fn baz(_t: &T) where for<'a> <&'a T as Baz>::Foo: Iterator {} -- cgit v1.2.3