Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
match
/
issue-82392.rs
blob: 4ae08fed93a292ec19ce08d0847117ad84fe5b15 [
file
] [
log
] [
blame
]
// https://github.com/rust-lang/rust/issues/82329
//@ compile-flags: -Zunpretty=hir,typed
//@ check-pass
//@ edition:2015
pub
fn
main
()
{
if
true
{
}
else
if
let
Some
(
a
)
=
Some
(
3
)
{
}
}