mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
11 lines
226 B
Rust
11 lines
226 B
Rust
//@ 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() {}
|