rustc/tests/ui/unpretty/pretty-let-else.rs
2023-08-02 10:33:26 +02:00

11 lines
130 B
Rust

// compile-flags: -Zunpretty=hir
// check-pass
fn foo(x: Option<u32>) {
let Some(_) = x else { panic!() };
}
fn main() {}