about summary refs log tree commit diff
path: root/src/test/ui/binding/or-pattern.rs
blob: 2ab44a96c3a4b4ac6a5072422377a3be1a54a826 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// run-pass
#![allow(non_camel_case_types)]

enum blah { a(isize, isize, usize), b(isize, isize), c, }

fn or_alt(q: blah) -> isize {
    match q { blah::a(x, y, _) | blah::b(x, y) => { return x + y; } blah::c => { return 0; } }
}

pub fn main() {
    assert_eq!(or_alt(blah::c), 0);
    assert_eq!(or_alt(blah::a(10, 100, 0)), 110);
    assert_eq!(or_alt(blah::b(20, 200)), 220);
}