aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/codegen
diff options
context:
space:
mode:
Diffstat (limited to 'xtask/src/codegen')
-rw-r--r--xtask/src/codegen/rust.ungram4
1 files changed, 2 insertions, 2 deletions
diff --git a/xtask/src/codegen/rust.ungram b/xtask/src/codegen/rust.ungram
index 7c814240a..7685f4f06 100644
--- a/xtask/src/codegen/rust.ungram
+++ b/xtask/src/codegen/rust.ungram
@@ -497,7 +497,7 @@ TypeBound =
497| '?'? Type 497| '?'? Type
498 498
499Pat = 499Pat =
500 BindPat 500 IdentPat
501| BoxPat 501| BoxPat
502| DotDotPat 502| DotDotPat
503| LiteralPat 503| LiteralPat
@@ -516,7 +516,7 @@ Pat =
516LiteralPat = 516LiteralPat =
517 Literal 517 Literal
518 518
519BindPat = 519IdentPat =
520 Attr* 'ref'? 'mut'? Name ('@' Pat)? 520 Attr* 'ref'? 'mut'? Name ('@' Pat)?
521 521
522WildcardPat = 522WildcardPat =