11 lines
241 B
Rust
11 lines
241 B
Rust
//@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() {}
|