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