blob: b998b7a97be4e773b43f9a2e2805001fb40d534d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// 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() {
}
|