13 lines
271 B
Rust
13 lines
271 B
Rust
// skip-filecheck
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
// 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);
|
|
}
|