mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
395 B
Rust
14 lines
395 B
Rust
//@ revisions: e2021 e2024
|
|
|
|
//@ [e2021] edition:2021
|
|
//@ [e2024] compile-flags: --edition 2024 -Z unstable-options
|
|
|
|
fn main() {
|
|
static mut X: i32 = 1;
|
|
|
|
let _x = &X;
|
|
//[e2024]~^ creating a shared reference to a mutable static [E0796]
|
|
//~^^ use of mutable static is unsafe and requires unsafe
|
|
//[e2021]~^^^ shared reference to mutable static is discouraged [static_mut_refs]
|
|
}
|