]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/miri_unleashed/box.rs
049727684d0eb96f7fbaf0d3882e9a7e82370da5
[rust.git] / src / test / ui / consts / miri_unleashed / box.rs
1 // compile-flags: -Zunleash-the-miri-inside-of-you
2 #![feature(const_mut_refs, box_syntax)]
3 #![deny(const_err)]
4
5 use std::mem::ManuallyDrop;
6
7 fn main() {}
8
9 static TEST_BAD: &mut i32 = {
10     &mut *(box 0)
11     //~^ WARN skipping const check
12     //~| ERROR could not evaluate static initializer
13     //~| NOTE heap allocations
14 };