mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
10 lines
188 B
Rust
10 lines
188 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);
|
|
}
|