1
Fork 0
rust/src/test/ui/consts/async-block.rs

9 lines
173 B
Rust
Raw Normal View History

2020-10-01 10:07:15 -07:00
// From <https://github.com/rust-lang/rust/issues/77361>
// edition:2018
const _: i32 = { core::mem::ManuallyDrop::new(async { 0 }); 4 };
//~^ `async` block
fn main() {}