mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-25 00:19:20 +00:00
14 lines
195 B
Rust
14 lines
195 B
Rust
#![deny(unsafe_code)]
|
|
|
|
#[allow(unsafe_code)]
|
|
unsafe extern "C" {
|
|
fn foo();
|
|
}
|
|
|
|
unsafe extern "C" {
|
|
//~^ ERROR usage of an `unsafe extern` block [unsafe_code]
|
|
fn bar();
|
|
}
|
|
|
|
fn main() {}
|