mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
18 lines
273 B
Rust
18 lines
273 B
Rust
// unit-test: Derefer
|
|
// EMIT_MIR derefer_terminator_test.main.Derefer.diff
|
|
// ignore-wasm32
|
|
|
|
fn main() {
|
|
let b = foo();
|
|
let d = foo();
|
|
match ****(&&&&b) {
|
|
true => {let x = 5;},
|
|
false => {}
|
|
}
|
|
let y = 42;
|
|
}
|
|
|
|
fn foo() -> bool {
|
|
true
|
|
}
|