]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/async-block.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / consts / async-block.rs
1 // From <https://github.com/rust-lang/rust/issues/77361>
2
3 // edition:2018
4
5 const _: i32 = { core::mem::ManuallyDrop::new(async { 0 }); 4 };
6 //~^ `async` block
7
8 fn main() {}