aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/pattern-or.rs
blob: 054b43f050465a228e4f9bf79a989e8d24eb00bc (plain)
1
2
3
4
5
6
7
// { dg-additional-options "-fsyntax-only" }

fn main() {
    match ((12, 13)) {
        (_, 5) | (12, _) => {}
    }
}