aboutsummaryrefslogtreecommitdiff
path: root/src/grammar/items/traits.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/grammar/items/traits.rs')
-rw-r--r--src/grammar/items/traits.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/grammar/items/traits.rs b/src/grammar/items/traits.rs
index 0614e8ab6..7c0935371 100644
--- a/src/grammar/items/traits.rs
+++ b/src/grammar/items/traits.rs
@@ -45,7 +45,7 @@ pub(super) fn impl_item(p: &mut Parser) {
45 // fn bar(&self) {} 45 // fn bar(&self) {}
46 // } 46 // }
47 while !p.at(EOF) && !p.at(R_CURLY) { 47 while !p.at(EOF) && !p.at(R_CURLY) {
48 item(p, true); 48 item_or_macro(p, true);
49 } 49 }
50 p.expect(R_CURLY); 50 p.expect(R_CURLY);
51} 51}