Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-40235.rs
blob: 2bdbb2f229e1f165d11e62bd2fba47237eccc1c6 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
unused_variables
)]
fn
foo
()
{}
fn
main
()
{
while
let
Some
(
foo
)
=
Some
(
1
)
{
break
}
foo
();
}