rust/tests/ui/consts/const-suggest-feature.rs
2024-09-15 10:20:47 +02:00

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() {}