rust/src/test/ui/issues/issue-14227.rs
2019-11-06 11:10:36 +01:00

7 lines
136 B
Rust

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