]> git.proxmox.com Git - rustc.git/blob - tests/ui/consts/const-points-to-static.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / consts / const-points-to-static.rs
1 // compile-flags: -Zunleash-the-miri-inside-of-you
2 // stderr-per-bitwidth
3
4 #![allow(dead_code)]
5
6 const TEST: &u8 = &MY_STATIC;
7 //~^ ERROR it is undefined behavior to use this value
8 //~| encountered a reference pointing to a static variable
9
10 static MY_STATIC: u8 = 4;
11
12 fn main() {
13 }