Files
rust/tests/ui/statics/issue-15261.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
224 B
Rust
Raw Normal View History

//@ build-pass
#![allow(dead_code)]
#![allow(non_upper_case_globals)]
static mut n_mut: usize = 0;
2014-10-16 21:40:21 +02:00
static n: &'static usize = unsafe { &n_mut };
//~^ WARN shared reference to mutable static [static_mut_refs]
2014-10-16 21:40:21 +02:00
fn main() {}