mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-25 08:06:54 +00:00
10 lines
164 B
Rust
10 lines
164 B
Rust
//@ run-rustfix
|
|
|
|
#![allow(dead_code)]
|
|
|
|
extern "C" {
|
|
unsafe fn foo(); //~ ERROR items in unadorned `extern` blocks cannot have safety qualifiers
|
|
}
|
|
|
|
fn main() {}
|