mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
11 lines
310 B
Text
11 lines
310 B
Text
error: expected `fn`, found keyword `pub`
|
|
--> $DIR/issue-113342.rs:7:12
|
|
|
|
|
LL | extern "C" pub fn id(x: i32) -> i32 { x }
|
|
| -----------^^^
|
|
| | |
|
|
| | expected `fn`
|
|
| help: visibility `pub` must come before `extern "C"`: `pub extern "C"`
|
|
|
|
error: aborting due to previous error
|
|
|