rust/tests/ui/consts/no-ice-from-static-in-const-issue-52060.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
286 B
Rust
Raw Permalink Normal View History

// 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: evaluation of constant value failed
//~| mutable global memory
fn main() {}