blob: 7087b6e6a6764eab2b8d4041c1b05697250e738a [file] [log] [blame]
// compile-flags: -Zunleash-the-miri-inside-of-you
#![allow(dead_code)]
const TEST: &u8 = &MY_STATIC;
//~^ ERROR it is undefined behavior to use this value
//~| NOTE encountered a reference pointing to a static variable
//~| NOTE
static MY_STATIC: u8 = 4;
fn main() {
}