rust/tests/ui/uninhabited/diverging-guard.rs

11 lines
113 B
Rust
Raw Normal View History

//@ check-pass
2023-05-09 10:39:28 -05:00
enum Void {}
fn main() {
let x: Void;
match x {
_ if { loop {} } => (),
}
}