mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-05 06:11:03 +00:00
10 lines
157 B
Rust
10 lines
157 B
Rust
#![feature(intrinsics)]
|
|
|
|
extern "C" {
|
|
pub static FOO: extern "rust-intrinsic" fn();
|
|
}
|
|
|
|
fn main() {
|
|
FOO() //~ ERROR: use of extern static is unsafe
|
|
}
|