about summary refs log tree commit diff
path: root/tests/ui/statics/issue-15261.rs
blob: f8c5ebaa54840c6074a3e6a5a0d277725427e2a2 (plain)
1
2
3
4
5
6
7
8
9
10
//@ build-pass
#![allow(dead_code)]
#![allow(non_upper_case_globals)]

static mut n_mut: usize = 0;

static n: &'static usize = unsafe { &n_mut };
//~^ WARN shared reference to mutable static [static_mut_refs]

fn main() {}