rust/tests/mir-opt/derefer_terminator_test.rs

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

19 lines
310 B
Rust
Raw Normal View History

// skip-filecheck
// unit-test: Derefer
// EMIT_MIR derefer_terminator_test.main.Derefer.diff
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2022-07-12 21:02:17 +08:00
fn main() {
let b = foo();
let d = foo();
match ****(&&&&b) {
true => {let x = 5;},
false => {}
}
let y = 42;
}
fn foo() -> bool {
true
}