mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
11 lines
130 B
Rust
11 lines
130 B
Rust
// compile-flags: -Zunpretty=hir
|
|
// check-pass
|
|
|
|
|
|
|
|
fn foo(x: Option<u32>) {
|
|
let Some(_) = x else { panic!() };
|
|
}
|
|
|
|
fn main() {}
|