2023-04-05 03:44:20 -05:00
|
|
|
// ignore-wasm32 compiled with panic=abort by default
|
2022-07-26 12:04:27 -05:00
|
|
|
// unit-test: ConstProp
|
2019-05-15 05:06:33 -05:00
|
|
|
#[inline(never)]
|
|
|
|
fn read(_: usize) { }
|
|
|
|
|
2020-07-27 14:22:43 -05:00
|
|
|
// EMIT_MIR const_prop_fails_gracefully.main.ConstProp.diff
|
2019-05-15 05:06:33 -05:00
|
|
|
fn main() {
|
|
|
|
const FOO: &i32 = &1;
|
|
|
|
let x = FOO as *const i32 as usize;
|
|
|
|
read(x);
|
|
|
|
}
|