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