blob: 6fa4c4aaca578d2cee450d8fb9759a7ca7b88db9 [file] [log] [blame]
// aux-build:extern-statics.rs
extern crate extern_statics;
use extern_statics::*;
extern "C" {
static A: u8;
}
fn main() {
let a = A; //~ ERROR use of extern static is unsafe
let ra = &A; //~ ERROR use of extern static is unsafe
let xa = XA; //~ ERROR use of extern static is unsafe
let xra = &XA; //~ ERROR use of extern static is unsafe
}