Sign in
android
/
toolchain
/
rustc
/
3b664ca54b09788037e50e8bf4cb1881bcd6cb8d
/
.
/
src
/
test
/
ui
/
consts
/
async-block.rs
blob: 1fa2a6160913ef2a10037c9cedcf872088ecbd24 [
file
] [
log
] [
blame
]
// From <https://github.com/rust-lang/rust/issues/77361>
// edition:2018
const
_
:
i32
=
{
core
::
mem
::
ManuallyDrop
::
new
(
async
{
0
});
4
};
//~^ `async` block
fn
main
()
{}