Files
rust/src/test/ui/async-await/no-const-async.rs

8 lines
196 B
Rust
Raw Normal View History

2019-06-24 17:48:21 -07:00
// 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`