blob: 4119cb055c590e101b73d83f498b106951991d9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// compile-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 };
fn main() {}
|