blob: 7835e2c352fada7530291f3d160dc7b451e390b2 [file] [log] [blame]
// run-pass
fn main() {
#[allow(unused_parens)]
match 0 {
(pat) => assert_eq!(pat, 0)
}
}