mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
11 lines
248 B
Rust
11 lines
248 B
Rust
// compile-flags: -Zdrop-tracking
|
|
// edition: 2021
|
|
|
|
fn main() {}
|
|
|
|
async fn foo() {
|
|
None { value: (), ..Default::default() }.await;
|
|
//~^ ERROR `Option<_>` is not a future
|
|
//~| ERROR variant `Option<_>::None` has no field named `value`
|
|
}
|