rust/tests/ui/statics/issue-15261.rs
2024-01-07 17:29:25 +03:00

13 lines
270 B
Rust

// build-pass
#![allow(dead_code)]
#![allow(non_upper_case_globals)]
// pretty-expanded FIXME #23616
static mut n_mut: usize = 0;
static n: &'static usize = unsafe { &n_mut };
//~^ WARN shared reference of mutable static is discouraged [static_mut_ref]
fn main() {}