Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'lib/ungrammar/rust.ungram')
-rw-r--r--lib/ungrammar/rust.ungram4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ungrammar/rust.ungram b/lib/ungrammar/rust.ungram
index 938843ffce..81323d27ca 100644
--- a/lib/ungrammar/rust.ungram
+++ b/lib/ungrammar/rust.ungram
@@ -618,7 +618,7 @@ RecordPat =
RecordPatFieldList =
'{'
fields:(RecordPatField (',' RecordPatField)* ','?)?
- '..'?
+ RestPat?
'}'
RecordPatField =
@@ -646,7 +646,7 @@ BoxPat =
'box' Pat
RestPat =
- '..'
+ Attr* '..'
MacroPat =
MacroCall