2019-06-24 19:48:21 -05:00
|
|
|
// edition:2018
|
|
|
|
// compile-flags: --crate-type lib
|
|
|
|
|
|
|
|
pub async const fn x() {}
|
2020-01-30 06:02:06 -06:00
|
|
|
//~^ ERROR expected one of `extern`, `fn`, or `unsafe`, found keyword `const`
|
2023-10-27 08:22:10 -05:00
|
|
|
//~| ERROR functions cannot be both `const` and `async`
|