blob: 9380399c64f9ef17d6389ebc04b858a49341ff59 [file] [edit]
fn f() {
let x = 0;
match x {
0 => {}
1 => {}
_ => {} // foo
// bar,
}
}
fn wont_fmt() -> [(); 1] {
[
(), //
// ,
]
}