diff options
Diffstat (limited to 'src/parser')
-rw-r--r-- | src/parser/grammar/type_params.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parser/grammar/type_params.rs b/src/parser/grammar/type_params.rs index 73c3cf8b8..8f62a471c 100644 --- a/src/parser/grammar/type_params.rs +++ b/src/parser/grammar/type_params.rs | |||
@@ -70,9 +70,11 @@ pub(super) fn list(p: &mut Parser) { | |||
70 | 70 | ||
71 | pub(super) fn where_clause(p: &mut Parser) { | 71 | pub(super) fn where_clause(p: &mut Parser) { |
72 | if p.at(WHERE_KW) { | 72 | if p.at(WHERE_KW) { |
73 | let m = p.start(); | ||
73 | p.bump(); | 74 | p.bump(); |
74 | p.expect(IDENT); | 75 | p.expect(IDENT); |
75 | p.expect(COLON); | 76 | p.expect(COLON); |
76 | p.expect(IDENT); | 77 | p.expect(IDENT); |
78 | m.complete(p, WHERE_CLAUSE); | ||
77 | } | 79 | } |
78 | } | 80 | } |