mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 01:34:21 +00:00
10 lines
189 B
Rust
10 lines
189 B
Rust
//@ unit-test: GVN
|
|
|
|
// EMIT_MIR ref_deref.main.GVN.diff
|
|
fn main() {
|
|
// CHECK-LABEL: fn main(
|
|
// CHECK: debug a => [[a:_.*]];
|
|
// CHECK: [[a]] = const 4_i32;
|
|
let a = *(&4);
|
|
}
|