summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/issue_4374.rs
blob: 2a45a022e7e7db00fb046e3196eea9beb5519be9 (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;
    }
  });
}