Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-37510.rs
blob: 62a90c5604bd975058668dd172c10b0c166df5db [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
fn
foo
(
_
:
&
mut
i32
)
->
bool
{
true
}
fn
main
()
{
let
opt
=
Some
(
92
);
let
mut
x
=
62
;
if
let
Some
(
_
)
=
opt
{
}
else
if
foo
(&
mut
x
)
{
}
}