mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-31 21:47:15 +03:00
9 lines
100 B
Rust
9 lines
100 B
Rust
static mut X: usize = 5;
|
|
|
|
fn main() {
|
|
unsafe {
|
|
X = 6;
|
|
assert_eq!(X, 6);
|
|
}
|
|
}
|