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

7 lines
171 B
Rust
Raw Normal View History

2019-06-24 17:48:21 -07:00
// edition:2018
// compile-flags: --crate-type lib
pub const async fn x() {}
//~^ ERROR expected identifier, found keyword `async`
2019-06-24 17:48:21 -07:00
//~^^ expected `:`, found keyword `fn`