Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
while
/
while-let-scope-issue-40235.rs
blob: 7d5dfc64a9059057869668fd9990a72e3f5ad2c8 [
file
] [
log
] [
blame
]
//@ check-pass
#![
allow
(
unused_variables
)]
fn
foo
()
{}
fn
main
()
{
while
let
Some
(
foo
)
=
Some
(
1
)
{
break
}
foo
();
}