summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue_4374.rs
blob: f5bf657bbc000bed3ed032751a932c3171c60f8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
fn a<F>(_f: F) -> ()
where
    F: FnOnce() -> (),
{
}
fn main() {
    a(|| {
        #[allow(irrefutable_let_patterns)]
        while let _ = 0 {
            break;
        }
    });
}