mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
22 lines
345 B
Rust
22 lines
345 B
Rust
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
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 {}
|
|
}
|
|
}
|