]> git.lizzy.rs Git - rust.git/blob - src/test/ui/async-await/no-const-async.rs
Add more tests for async/await
[rust.git] / src / test / ui / async-await / no-const-async.rs
1 // compile-fail
2 // edition:2018
3 // compile-flags: --crate-type lib
4
5 #![feature(async_await)]
6
7 pub const async fn x() {}
8 //~^ ERROR expected identifier, found reserved keyword `async`
9 //~^^ expected `:`, found keyword `fn`