about summary refs log tree commit diff
path: root/tests/ui/statics/check-immutable-mut-slices.rs
blob: 9e5ca5059d6a8b449d6a326d25462859ee264def (plain)
1
2
3
4
5
6
// Checks that immutable static items can't have mutable slices

static TEST: &'static mut [isize] = &mut [];
//~^ ERROR mutable borrows of lifetime-extended temporaries

pub fn main() { }