mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
578 B
Rust
16 lines
578 B
Rust
// incremental
|
|
// edition:2021
|
|
// compile-flags: -Zdrop-tracking
|
|
|
|
fn main() {
|
|
let _ = async {
|
|
let s = std::array::from_fn(|_| ()).await;
|
|
//~^ ERROR `[(); _]` is not a future
|
|
//~| ERROR type inside `async` block must be known in this context
|
|
//~| ERROR type inside `async` block must be known in this context
|
|
//~| ERROR type inside `async` block must be known in this context
|
|
//~| ERROR type inside `async` block must be known in this context
|
|
//~| ERROR type inside `async` block must be known in this context
|
|
};
|
|
}
|