-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
save/restore
pessimistic_yield
when entering bodies
This flag is used to make the execution order around `+=` operators pessimistic. Failure to save/restore the flag was causing independent async blocks to effect one another, leading to strange ICEs and failed assumptions.
- Loading branch information
1 parent
2dcf54f
commit e7f8895
Showing
2 changed files
with
25 additions
and
0 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,23 @@ | ||
// Regression test for #69307 | ||
// | ||
// Having a `async { .. foo.await .. }` block appear inside of a `+=` | ||
// expression was causing an ICE due to a failure to save/restore | ||
// state in the AST numbering pass when entering a nested body. | ||
// | ||
// check-pass | ||
// edition:2018 | ||
|
||
fn block_on<F>(_: F) -> usize { | ||
0 | ||
} | ||
|
||
fn main() {} | ||
|
||
async fn bar() { | ||
let mut sum = 0; | ||
sum += block_on(async { | ||
baz().await; | ||
}); | ||
} | ||
|
||
async fn baz() {} |