diff options
Diffstat (limited to 'crates/ra_parser')
-rw-r--r-- | crates/ra_parser/src/grammar/types.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_parser/src/grammar/types.rs b/crates/ra_parser/src/grammar/types.rs index 63dd3774f..9e8e3bd97 100644 --- a/crates/ra_parser/src/grammar/types.rs +++ b/crates/ra_parser/src/grammar/types.rs | |||
@@ -217,6 +217,7 @@ pub(super) fn for_binder(p: &mut Parser) { | |||
217 | // test for_type | 217 | // test for_type |
218 | // type A = for<'a> fn() -> (); | 218 | // type A = for<'a> fn() -> (); |
219 | // type B = for<'a> unsafe extern "C" fn(&'a ()) -> (); | 219 | // type B = for<'a> unsafe extern "C" fn(&'a ()) -> (); |
220 | // type Obj = for<'a> PartialEq<&'a i32>; | ||
220 | pub(super) fn for_type(p: &mut Parser) { | 221 | pub(super) fn for_type(p: &mut Parser) { |
221 | assert!(p.at(T![for])); | 222 | assert!(p.at(T![for])); |
222 | let m = p.start(); | 223 | let m = p.start(); |