rust/tests/mir-opt/const_prop/ref_deref.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
92 B
Rust
Raw Normal View History

2023-01-07 21:10:38 +00:00
// unit-test: ConstProp
2020-07-27 21:22:43 +02:00
// EMIT_MIR ref_deref.main.ConstProp.diff
2020-04-04 17:15:01 +00:00
fn main() {
*(&4);
}