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.

18 lines
273 B
Rust
Raw Normal View History

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