mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
21 lines
296 B
Rust
21 lines
296 B
Rust
enum Empty {}
|
|
|
|
fn empty() -> Option<Empty> {
|
|
None
|
|
}
|
|
|
|
// EMIT_MIR unreachable.main.UnreachablePropagation.diff
|
|
fn main() {
|
|
if let Some(_x) = empty() {
|
|
let mut _y;
|
|
|
|
if true {
|
|
_y = 21;
|
|
} else {
|
|
_y = 42;
|
|
}
|
|
|
|
match _x { }
|
|
}
|
|
}
|