Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
unpretty
/
let-else-hir.rs
blob: 9c231189659afee27334bdda626200a28872aa13 [
file
] [
log
] [
blame
] [
edit
]
//@ compile-flags: -Zunpretty=hir
//@ check-pass
fn
foo
(
x
:
Option
<
u32
>)
{
let
Some
(
_
)
=
x
else
{
panic
!()
};
}
fn
main
()
{}