mirror of https://github.com/rust-lang/rust.git
14 lines
334 B
Plaintext
14 lines
334 B
Plaintext
error: items in `extern` blocks without an `unsafe` qualifier 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
|
|
|