aboutsummaryrefslogtreecommitdiff
path: root/src/parser/grammar/type_params.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/grammar/type_params.rs')
-rw-r--r--src/parser/grammar/type_params.rs2
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
71pub(super) fn where_clause(p: &mut Parser) { 71pub(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}