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