2014-03-06 15:48:52 -06:00
|
|
|
// Checks that immutable static items can't have mutable slices
|
2014-01-25 11:48:57 -06:00
|
|
|
|
2015-01-08 04:54:35 -06:00
|
|
|
static TEST: &'static mut [isize] = &mut [];
|
2021-01-03 12:46:20 -06:00
|
|
|
//~^ ERROR mutable references are not allowed
|
2014-01-25 11:48:57 -06:00
|
|
|
|
2014-03-06 15:48:52 -06:00
|
|
|
pub fn main() { }
|