rustc/tests/ui/statics/issue-14227.rs
2024-06-19 10:24:51 +02:00

8 lines
140 B
Rust

extern "C" {
pub static symbol: u32;
}
static CRASH: u32 = symbol;
//~^ ERROR use of extern static is unsafe and requires
fn main() {}