]> git.proxmox.com Git - rustc.git/blame - src/test/mir-opt/const_prop/const_prop_fails_gracefully.rs
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / mir-opt / const_prop / const_prop_fails_gracefully.rs
CommitLineData
48663c56
XL
1#[inline(never)]
2fn read(_: usize) { }
3
ba9703b0 4// EMIT_MIR rustc.main.ConstProp.diff
48663c56
XL
5fn main() {
6 const FOO: &i32 = &1;
7 let x = FOO as *const i32 as usize;
8 read(x);
9}