rust/src/test/ui/check-static-immutable-mut-slices.rs
2018-12-25 21:08:33 -07:00

7 lines
197 B
Rust

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