2019-10-28 19:00:00 -05:00
|
|
|
// build-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(dead_code)]
|
2018-08-31 08:02:01 -05:00
|
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
static mut n_mut: usize = 0;
|
2014-10-16 14:40:21 -05:00
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
static n: &'static usize = unsafe{ &n_mut };
|
2014-10-16 14:40:21 -05:00
|
|
|
|
|
|
|
fn main() {}
|