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.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/parser/grammar/type_params.rs b/src/parser/grammar/type_params.rs
index 12c9a5362..8f62a471c 100644
--- a/src/parser/grammar/type_params.rs
+++ b/src/parser/grammar/type_params.rs
@@ -70,6 +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();
75 p.expect(IDENT);
76 p.expect(COLON);
77 p.expect(IDENT);
78 m.complete(p, WHERE_CLAUSE);
74 } 79 }
75} 80}