blob: 2ad5d18d72dcb7a1710bb1fcfaa3a203ef4bf0e4 [file] [log] [blame]
// Regression test for https://github.com/rust-lang/rust/issues/52060
// The compiler shouldn't ICE in this case
static mut A: &'static [u32] = &[1];
static B: [u32; 1] = [0; unsafe { A.len() }];
//~^ ERROR: mutable global memory
fn main() {}