rust/src/test/ui/async-await/no-const-async.rs
2019-08-20 03:08:42 +02:00

7 lines
196 B
Rust

// compile-fail
// edition:2018
// compile-flags: --crate-type lib
pub const async fn x() {}
//~^ ERROR expected identifier, found reserved keyword `async`
//~^^ expected `:`, found keyword `fn`