mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
12 lines
333 B
Plaintext
12 lines
333 B
Plaintext
error: expected one of `extern` or `fn`, found keyword `pub`
|
|
--> $DIR/issue-76437-unsafe.rs:4:12
|
|
|
|
|
LL | unsafe pub fn t() {}
|
|
| -------^^^
|
|
| | |
|
|
| | expected one of `extern` or `fn`
|
|
| help: visibility `pub` must come before `unsafe`: `pub unsafe`
|
|
|
|
error: aborting due to previous error
|
|
|