blob: 97657f8848155bf5bc584202e88912114971d3e9 [file] [log] [blame]
const C1: &'static mut [usize] = &mut [];
//~^ ERROR: references in constants may only refer to immutable values
static mut S: usize = 3;
const C2: &'static mut usize = unsafe { &mut S };
//~^ ERROR: constants cannot refer to statics
//~| ERROR: references in constants may only refer to immutable values
fn main() {}