Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/parser/src/grammar.rs')
| -rw-r--r-- | crates/parser/src/grammar.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/parser/src/grammar.rs b/crates/parser/src/grammar.rs index d0b07f5931..3d0ad6735e 100644 --- a/crates/parser/src/grammar.rs +++ b/crates/parser/src/grammar.rs @@ -63,7 +63,7 @@ pub(crate) mod entry_points { pub(crate) use types::type_; pub(crate) fn expr(p: &mut Parser) { - let _ = expressions::expr_with_attrs(p); + let _ = expressions::expr(p); } pub(crate) fn stmt(p: &mut Parser) { |