forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
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 rust-lang#62152 - doctorn:async_let_ice, r=cramertj
Don't ICE on item in `.await` expression The code for lowering a `.await` expression missed that item IDs may already have been assigned for items inside of an `async` block, or for closures. This change means we no longer exit early after finding a `.await` in a block that isn't `async` and instead just emit the error. This avoids an ICE generated due to item IDs not being densely generated. (The `YieldSource` of the generated `yield` expression is used to avoid errors generated about having `yield` expressions outside of generator literals.) r? @cramertj Resolves rust-lang#62009 and resolves rust-lang#61685
- Loading branch information
Showing
7 changed files
with
89 additions
and
9 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
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,19 @@ | ||
// edition:2018 | ||
|
||
#![feature(async_await)] | ||
|
||
async fn print_dur() {} | ||
|
||
fn main() { | ||
async { let (); }.await; | ||
//~^ ERROR `await` is only allowed inside `async` functions and blocks | ||
async { | ||
//~^ ERROR `await` is only allowed inside `async` functions and blocks | ||
let task1 = print_dur().await; | ||
}.await; | ||
(async || 2333)().await; | ||
//~^ ERROR `await` is only allowed inside `async` functions and blocks | ||
(|_| 2333).await; | ||
//~^ ERROR `await` is only allowed inside `async` functions and blocks | ||
//~^^ ERROR | ||
} |
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,49 @@ | ||
error[E0728]: `await` is only allowed inside `async` functions and blocks | ||
--> $DIR/issue-62009.rs:8:5 | ||
| | ||
LL | fn main() { | ||
| ---- this is not `async` | ||
LL | async { let (); }.await; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^ only allowed inside `async` functions and blocks | ||
|
||
error[E0728]: `await` is only allowed inside `async` functions and blocks | ||
--> $DIR/issue-62009.rs:10:5 | ||
| | ||
LL | fn main() { | ||
| ---- this is not `async` | ||
... | ||
LL | / async { | ||
LL | | | ||
LL | | let task1 = print_dur().await; | ||
LL | | }.await; | ||
| |___________^ only allowed inside `async` functions and blocks | ||
|
||
error[E0728]: `await` is only allowed inside `async` functions and blocks | ||
--> $DIR/issue-62009.rs:14:5 | ||
| | ||
LL | fn main() { | ||
| ---- this is not `async` | ||
... | ||
LL | (async || 2333)().await; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^ only allowed inside `async` functions and blocks | ||
|
||
error[E0728]: `await` is only allowed inside `async` functions and blocks | ||
--> $DIR/issue-62009.rs:16:5 | ||
| | ||
LL | fn main() { | ||
| ---- this is not `async` | ||
... | ||
LL | (|_| 2333).await; | ||
| ^^^^^^^^^^^^^^^^ only allowed inside `async` functions and blocks | ||
|
||
error[E0277]: the trait bound `[closure@$DIR/issue-62009.rs:16:5: 16:15]: std::future::Future` is not satisfied | ||
--> $DIR/issue-62009.rs:16:5 | ||
| | ||
LL | (|_| 2333).await; | ||
| ^^^^^^^^^^^^^^^^ the trait `std::future::Future` is not implemented for `[closure@$DIR/issue-62009.rs:16:5: 16:15]` | ||
| | ||
= note: required by `std::future::poll_with_tls_context` | ||
|
||
error: aborting due to 5 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0277`. |