mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 03:09:54 +00:00
10 lines
191 B
Plaintext
10 lines
191 B
Plaintext
//@ run-rustfix
|
|
|
|
#![allow(dead_code)]
|
|
|
|
unsafe extern "C" {
|
|
unsafe fn foo(); //~ ERROR items in `extern` blocks without an `unsafe` qualifier cannot have safety qualifiers
|
|
}
|
|
|
|
fn main() {}
|