-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of #110022 - Ezrashaw:fix-parser-ident-regression, r=com…
- Loading branch information
Showing
3 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
fn`2222222222222222222222222222222222222222() {} | ||
//~^ ERROR unknown start of token: ` | ||
//~^^ ERROR expected identifier, found `2222222222222222222222222222222222222222` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
error: unknown start of token: ` | ||
--> $DIR/issue-110014.rs:1:3 | ||
| | ||
LL | fn`2222222222222222222222222222222222222222() {} | ||
| ^ | ||
| | ||
help: Unicode character '`' (Grave Accent) looks like ''' (Single Quote), but it is not | ||
| | ||
LL | fn'2222222222222222222222222222222222222222() {} | ||
| ~ | ||
|
||
error: expected identifier, found `2222222222222222222222222222222222222222` | ||
--> $DIR/issue-110014.rs:1:4 | ||
| | ||
LL | fn`2222222222222222222222222222222222222222() {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected identifier | ||
|
||
error: aborting due to 2 previous errors | ||
|