9 lines
145 B
Rust
9 lines
145 B
Rust
// EMIT_MIR scalar_literal_propagation.main.ConstProp.diff
|
|
fn main() {
|
|
let x = 1;
|
|
consume(x);
|
|
}
|
|
|
|
#[inline(never)]
|
|
fn consume(_: u32) { }
|