mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-03 12:13:43 +00:00
11 lines
205 B
Rust
11 lines
205 B
Rust
//@ run-rustfix
|
|
|
|
#![feature(unsafe_extern_blocks)]
|
|
#![allow(dead_code)]
|
|
|
|
unsafe extern "C" {
|
|
unsafe fn foo(); //~ ERROR items in unadorned `extern` blocks cannot have safety qualifiers
|
|
}
|
|
|
|
fn main() {}
|