mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
408eeae59d
Rename `static_mut_ref` lint to `static_mut_refs`.
13 lines
273 B
Rust
13 lines
273 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 to mutable static is discouraged [static_mut_refs]
|
|
|
|
fn main() {}
|