File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1491,7 +1491,7 @@ The grammar accepted by the parser is as follows:
1491
1491
1492
1492
<prio> ::= <int>
1493
1493
1494
- <int> ::= [ "-" ] ( "0".."9" | "_" )+
1494
+ <int> ::= [ "-" ] ( "0".."9" ) ( "0".."9" | "_" )*
1495
1495
| [ "-" ] "0" ("x" | "X") ( "0".."9" | "A".."F" | "a".."f" | "_" )+
1496
1496
| [ "-" ] "0" ("o" | "O") ( "0".."7" | "_" )+
1497
1497
| [ "-" ] "0" ("b" | "B") ( "0".."1" | "_" )+
@@ -1521,7 +1521,7 @@ The grammar accepted by the parser is as follows:
1521
1521
1522
1522
<extern> ::= "constructor" <ident> <ident>
1523
1523
| "extractor" [ "infallible" ] <ident> <ident>
1524
- | "const" <const-ident> <ident> < ty>
1524
+ | "const" <const-ident> <ty>
1525
1525
1526
1526
<converter> ::= <ty> <ty> <ident>
1527
1527
```
You can’t perform that action at this time.
0 commit comments