Sign in
rust
/
rustfmt
/
refs/heads/subtree
/
.
/
tests
/
target
/
issue_4374.rs
blob: f5bf657bbc000bed3ed032751a932c3171c60f8c [
file
] [
log
] [
blame
]
fn
a
<
F
>(
_f
:
F
)
->
()
where
F
:
FnOnce
()
->
(),
{
}
fn
main
()
{
a
(||
{
#[
allow
(
irrefutable_let_patterns
)]
while
let
_
=
0
{
break
;
}
});
}