Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
const-suggest-feature.rs
blob: 0c94036897610ce22facfd666ab94da44c80abd4 [
file
] [
log
] [
blame
] [
edit
]
//@compile-flags: --edition 2018
use
std
::
cell
::
Cell
;
const
WRITE
:
()
=
unsafe
{
let
x
=
async
{
13
};
//~^ ERROR `async` blocks
//~| HELP add `#![feature(const_async_blocks)]` to the crate attributes to enable
};
fn
main
()
{}