14 lines
474 B
Plaintext
14 lines
474 B
Plaintext
|
|
error: expected one of `extern`, `fn`, or `unsafe`, found keyword `const`
|
||
|
|
--> $DIR/const-async-const.rs:6:13
|
||
|
|
|
|
||
|
|
LL | const async const fn test() {}
|
||
|
|
| ------^^^^^
|
||
|
|
| | |
|
||
|
|
| | expected one of `extern`, `fn`, or `unsafe`
|
||
|
|
| help: `const` must come before `async`: `const async`
|
||
|
|
|
|
||
|
|
= note: keyword order for functions declaration is `default`, `pub`, `const`, `async`, `unsafe`, `extern`
|
||
|
|
|
||
|
|
error: aborting due to previous error
|
||
|
|
|