mirror of https://github.com/rust-lang/rust
14 lines
312 B
Plaintext
14 lines
312 B
Plaintext
error: items in unadorned `extern` blocks cannot have safety qualifiers
|
|
--> $DIR/unsafe-on-extern-block-issue-126756.rs:6:5
|
|
|
|
|
LL | unsafe fn foo();
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
help: add unsafe to this `extern` block
|
|
|
|
|
LL | unsafe extern "C" {
|
|
| ++++++
|
|
|
|
error: aborting due to 1 previous error
|
|
|