rust/src/test/ui/safe-extern-statics-mut.rs
2018-12-25 21:08:33 -07:00

16 lines
369 B
Rust

// aux-build:extern-statics.rs
extern crate extern_statics;
use extern_statics::*;
extern {
static mut B: u8;
}
fn main() {
let b = B; //~ ERROR use of mutable static is unsafe
let rb = &B; //~ ERROR use of mutable static is unsafe
let xb = XB; //~ ERROR use of mutable static is unsafe
let xrb = &XB; //~ ERROR use of mutable static is unsafe
}