aboutsummaryrefslogtreecommitdiff
path: root/src/grammar/items/traits.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-05 12:08:46 +0100
committerAleksey Kladov <[email protected]>2018-08-05 12:08:46 +0100
commitc871022f9810547f3eeaa5af3a3dc4bc0c85a386 (patch)
tree71d74bbc3872c7cf5f0731639c196a81c93b9eee /src/grammar/items/traits.rs
parentb513e94d88c8702a051acf4d58c0335c9aed9db2 (diff)
item-macros
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}