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
|
|
|
|
2023-12-22 15:12:01 +03:00
|
|
|
static n: &'static usize = unsafe { &n_mut };
|
2024-02-17 22:01:56 +03:00
|
|
|
//~^ WARN shared reference to mutable static is discouraged [static_mut_refs]
|
2014-10-16 21:40:21 +02:00
|
|
|
|
|
|
|
fn main() {}
|