forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
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#70640 - jonas-schievink:async-ice, r=cramertj
Hide `task_context` when lowering body Fixes rust-lang#70594
- Loading branch information
Showing
3 changed files
with
58 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,12 @@ | ||
// edition:2018 | ||
|
||
async fn fun() { | ||
[1; ().await]; | ||
//~^ error: `await` is only allowed inside `async` functions and blocks | ||
//~| error: `.await` is not allowed in a `const` | ||
//~| error: `loop` is not allowed in a `const` | ||
//~| error: `.await` is not allowed in a `const` | ||
//~| error: the trait bound `(): std::future::Future` is not satisfied | ||
} | ||
|
||
fn main() {} |
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,44 @@ | ||
error[E0728]: `await` is only allowed inside `async` functions and blocks | ||
--> $DIR/issue-70594.rs:4:9 | ||
| | ||
LL | async fn fun() { | ||
| --- this is not `async` | ||
LL | [1; ().await]; | ||
| ^^^^^^^^ only allowed inside `async` functions and blocks | ||
|
||
error[E0744]: `.await` is not allowed in a `const` | ||
--> $DIR/issue-70594.rs:4:9 | ||
| | ||
LL | [1; ().await]; | ||
| ^^^^^^^^ | ||
|
||
error[E0658]: `loop` is not allowed in a `const` | ||
--> $DIR/issue-70594.rs:4:9 | ||
| | ||
LL | [1; ().await]; | ||
| ^^^^^^^^ | ||
| | ||
= note: see issue #52000 <https://github.com/rust-lang/rust/issues/52000> for more information | ||
= help: add `#![feature(const_loop)]` to the crate attributes to enable | ||
|
||
error[E0744]: `.await` is not allowed in a `const` | ||
--> $DIR/issue-70594.rs:4:9 | ||
| | ||
LL | [1; ().await]; | ||
| ^^^^^^^^ | ||
|
||
error[E0277]: the trait bound `(): std::future::Future` is not satisfied | ||
--> $DIR/issue-70594.rs:4:9 | ||
| | ||
LL | [1; ().await]; | ||
| ^^^^^^^^ the trait `std::future::Future` is not implemented for `()` | ||
| | ||
::: $SRC_DIR/libcore/future/mod.rs:LL:COL | ||
| | ||
LL | F: Future, | ||
| ------ required by this bound in `std::future::poll_with_context` | ||
|
||
error: aborting due to 5 previous errors | ||
|
||
Some errors have detailed explanations: E0277, E0658, E0728, E0744. | ||
For more information about an error, try `rustc --explain E0277`. |