rust/tests/mir-opt/const_prop/const_prop_fails_gracefully.rs
2023-01-11 09:32:08 +00:00

11 lines
217 B
Rust

// unit-test: ConstProp
#[inline(never)]
fn read(_: usize) { }
// EMIT_MIR const_prop_fails_gracefully.main.ConstProp.diff
fn main() {
const FOO: &i32 = &1;
let x = FOO as *const i32 as usize;
read(x);
}