blob: 943b2cae25342b900b1e978b63b730395faaea02 [file] [log] [blame]
//@ run-pass
#![allow(non_camel_case_types)]
enum blah { a(isize, isize, #[allow(dead_code)] 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);
}