summary refs log tree commit diff
path: root/src/test/ui/check-static-immutable-mut-slices.rs
blob: d5e9fb2dede9341255f38bccce90bd67db27475b (plain)
1
2
3
4
5
6
// 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() { }