mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
18 lines
429 B
Rust
18 lines
429 B
Rust
// aux-build:extern-statics.rs
|
|
// revisions: mir thir
|
|
// [thir]compile-flags: -Z thir-unsafeck
|
|
|
|
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
|
|
}
|