aboutsummaryrefslogtreecommitdiff
path: root/src/parser/event_parser/grammar/items/structs.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-01-28 15:53:53 +0000
committerAleksey Kladov <[email protected]>2018-01-28 18:18:24 +0000
commit8ca02acb5a574c312dcb3842904b99b282d45883 (patch)
treed1707c94eda435c95408f73ec530aa5ac2386920 /src/parser/event_parser/grammar/items/structs.rs
parent7e55b2693f17afdae91c492c6f79c9ba4020d893 (diff)
Generic params in structs
Diffstat (limited to 'src/parser/event_parser/grammar/items/structs.rs')
-rw-r--r--src/parser/event_parser/grammar/items/structs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/event_parser/grammar/items/structs.rs b/src/parser/event_parser/grammar/items/structs.rs
index b31cf18df..0934f3d28 100644
--- a/src/parser/event_parser/grammar/items/structs.rs
+++ b/src/parser/event_parser/grammar/items/structs.rs
@@ -7,7 +7,7 @@ pub(super) fn struct_item(p: &mut Parser) {
7 if !p.expect(IDENT) { 7 if !p.expect(IDENT) {
8 return; 8 return;
9 } 9 }
10 generic_parameters(p); 10 type_param_list(p);
11 match p.current() { 11 match p.current() {
12 WHERE_KW => { 12 WHERE_KW => {
13 where_clause(p); 13 where_clause(p);