mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
21 lines
309 B
Rust
21 lines
309 B
Rust
pub enum Empty {}
|
|
|
|
fn empty() -> Option<Empty> {
|
|
None
|
|
}
|
|
|
|
fn loop_forever() {
|
|
loop {}
|
|
}
|
|
|
|
// EMIT_MIR unreachable_diverging.main.UnreachablePropagation.diff
|
|
fn main() {
|
|
let x = true;
|
|
if let Some(bomb) = empty() {
|
|
if x {
|
|
loop_forever()
|
|
}
|
|
match bomb {}
|
|
}
|
|
}
|