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