blob: 19545a1c92554f9fde66186705e6c74097dba7a8 [file] [log] [blame]
// Checks that immutable static items can't have mutable slices
static TEST: &'static mut [isize] = &mut [];
//~^ ERROR mutable borrows of temporaries
pub fn main() { }