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