-
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.
Don't ICE on item in
.await
expression
- 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`. |