-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #88835 - FabianWolff:issue-88770, r=petrochenkov
Fix error recovery in format macro parsing Fixes #88770. Basically, the assumption in the following comment is incorrect: https://github.com/rust-lang/rust/blob/b69fe57261086e70aea9d5b58819a1794bf7c121/compiler/rustc_builtin_macros/src/format.rs#L167-L172 This is only true in the first iteration of the loop, when [`p.clear_expected_tokens()`](https://github.com/rust-lang/rust/blob/b69fe57261086e70aea9d5b58819a1794bf7c121/compiler/rustc_builtin_macros/src/format.rs#L164) is called. In subsequent iterations, `p.expected_tokens` won't be empty, so `p.expect()` won't actually call `unexpected_try_recover()`: https://github.com/rust-lang/rust/blob/b69fe57261086e70aea9d5b58819a1794bf7c121/compiler/rustc_parse/src/parser/mod.rs#L487-L498 Instead, it will call `expect_one_of()`, which _can_ recover and return `Ok()`. This PR handles this case to fix the ICE in #88770.
- Loading branch information
Showing
4 changed files
with
94 additions
and
18 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
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,11 @@ | ||
// Regression test for the ICE described in #88770. | ||
|
||
// error-pattern:this file contains an unclosed delimiter | ||
// error-pattern:expected one of | ||
// error-pattern:missing `in` in `for` loop | ||
// error-pattern:expected `;`, found `e` | ||
|
||
fn m(){print!("",(c for&g | ||
u | ||
e | ||
e |
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,66 @@ | ||
error: this file contains an unclosed delimiter | ||
--> $DIR/issue-88770.rs:11:3 | ||
| | ||
LL | fn m(){print!("",(c for&g | ||
| - - - unclosed delimiter | ||
| | | | ||
| | unclosed delimiter | ||
| unclosed delimiter | ||
... | ||
LL | e | ||
| ^ | ||
|
||
error: this file contains an unclosed delimiter | ||
--> $DIR/issue-88770.rs:11:3 | ||
| | ||
LL | fn m(){print!("",(c for&g | ||
| - - - unclosed delimiter | ||
| | | | ||
| | unclosed delimiter | ||
| unclosed delimiter | ||
... | ||
LL | e | ||
| ^ | ||
|
||
error: this file contains an unclosed delimiter | ||
--> $DIR/issue-88770.rs:11:3 | ||
| | ||
LL | fn m(){print!("",(c for&g | ||
| - - - unclosed delimiter | ||
| | | | ||
| | unclosed delimiter | ||
| unclosed delimiter | ||
... | ||
LL | e | ||
| ^ | ||
|
||
error: missing `in` in `for` loop | ||
--> $DIR/issue-88770.rs:8:26 | ||
| | ||
LL | fn m(){print!("",(c for&g | ||
| __________________________^ | ||
LL | | u | ||
| |_ help: try adding `in` here | ||
|
||
error: expected one of `!`, `)`, `,`, `.`, `::`, `?`, `{`, or an operator, found keyword `for` | ||
--> $DIR/issue-88770.rs:8:21 | ||
| | ||
LL | fn m(){print!("",(c for&g | ||
| ^^^ expected one of 8 possible tokens | ||
|
||
error: expected `;`, found `e` | ||
--> $DIR/issue-88770.rs:10:2 | ||
| | ||
LL | e | ||
| ^ help: add `;` here | ||
LL | e | ||
| - unexpected token | ||
|
||
error: expected one of `!`, `,`, `.`, `::`, `?`, `{`, or an operator, found `)` | ||
--> $DIR/issue-88770.rs:11:3 | ||
| | ||
LL | e | ||
| ^ expected one of 7 possible tokens | ||
|
||
error: aborting due to 7 previous errors | ||
|