mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 16:40:17 +00:00
11 lines
132 B
Rust
11 lines
132 B
Rust
//@ compile-flags: -Zunpretty=hir
|
|
//@ check-pass
|
|
|
|
|
|
|
|
fn foo(x: Option<u32>) {
|
|
let Some(_) = x else { panic!() };
|
|
}
|
|
|
|
fn main() {}
|