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