2015-01-08 05:02:42 -06:00
|
|
|
const C1: &'static mut [usize] = &mut [];
|
2014-12-30 14:36:03 -06:00
|
|
|
//~^ ERROR: references in constants may only refer to immutable values
|
2014-10-06 23:16:35 -05:00
|
|
|
|
2015-01-08 05:02:42 -06:00
|
|
|
static mut S: usize = 3;
|
2016-05-02 17:57:35 -05:00
|
|
|
const C2: &'static mut usize = unsafe { &mut S };
|
|
|
|
//~^ ERROR: constants cannot refer to statics
|
|
|
|
//~| ERROR: references in constants may only refer to immutable values
|
2014-10-06 23:16:35 -05:00
|
|
|
|
|
|
|
fn main() {}
|