rust/src/test/ui/check-static-immutable-mut-slices.rs
2020-06-19 11:48:46 -05:00

7 lines
186 B
Rust

// Checks that immutable static items can't have mutable slices
static TEST: &'static mut [isize] = &mut [];
//~^ ERROR mutable references are not allowed in statics
pub fn main() { }