mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 20:17:50 +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`
|
||
|
}
|