We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1dd653 commit a1a0195Copy full SHA for a1a0195
standard/lexical-structure.md
@@ -1490,12 +1490,12 @@ fragment PP_Line_Indicator
1490
;
1491
1492
fragment PP_Compilation_Unit_Name
1493
- : '"' PP_Compilation_Unit_Name_Character+ '"'
+ : '"' PP_Compilation_Unit_Name_Character* '"'
1494
1495
1496
fragment PP_Compilation_Unit_Name_Character
1497
// Any Input_Character except "
1498
- : ~('\u000D' | '\u000A' | '\u0085' | '\u2028' | '\u2029' | '#')
+ : ~('\u000D' | '\u000A' | '\u0085' | '\u2028' | '\u2029' | '"')
1499
1500
```
1501
0 commit comments