about summary refs log tree commit diff
path: root/src/test/ui/async-await/no-const-async.rs
blob: 57a9f175ca318ca2f30e7959a263513dee779b25 (plain)
1
2
3
4
5
6
// edition:2018
// compile-flags: --crate-type lib

pub const async fn x() {}
//~^ ERROR functions cannot be both `const` and `async`
//~| ERROR `impl Trait` in const fn is unstable