mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
19 lines
361 B
Rust
19 lines
361 B
Rust
// unit-test: SimplifyLocals-before-const-prop
|
|
// compile-flags: -C overflow-checks=no
|
|
|
|
fn use_zst(_: ((), ())) {}
|
|
|
|
struct Temp {
|
|
x: u8,
|
|
}
|
|
|
|
fn use_u8(_: u8) {}
|
|
|
|
// EMIT_MIR simplify_locals_removes_unused_consts.main.SimplifyLocals-before-const-prop.diff
|
|
fn main() {
|
|
let ((), ()) = ((), ());
|
|
use_zst(((), ()));
|
|
|
|
use_u8((Temp { x: 40 }).x + 2);
|
|
}
|