about summary refs log tree commit diff
path: root/tests/ui/binding/pat-tuple-7.rs
blob: ad2bb7715afcb3deb467ac2fb64fb00509d55e90 (plain)
1
2
3
4
5
6
7
8
//@ run-pass

fn main() {
    #[allow(unused_parens)]
    match 0 {
        (pat) => assert_eq!(pat, 0)
    }
}