mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-24 21:05:12 +00:00
10 lines
173 B
Rust
10 lines
173 B
Rust
extern "C" {
|
|
static mut a: i32;
|
|
}
|
|
|
|
fn main() {
|
|
a += 3; //~ ERROR: requires unsafe
|
|
a = 4; //~ ERROR: requires unsafe
|
|
let _b = a; //~ ERROR: requires unsafe
|
|
}
|