blob: b998b7a97be4e773b43f9a2e2805001fb40d534d [file] [log] [blame]
// compile-flags: -Zunleash-the-miri-inside-of-you
#![allow(dead_code)]
const TEST: &u8 = &MY_STATIC;
//~^ skipping const checks
//~| it is undefined behavior to use this value
static MY_STATIC: u8 = 4;
fn main() {
}