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