]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/or-pattern.rs
ef399044abc99347c11d258a0f59ea5ec740b7da
[rust.git] / src / test / run-pass / or-pattern.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 enum blah { a(int, int, uint), b(int, int), c, }
12
13 fn or_alt(q: blah) -> int {
14     match q { blah::a(x, y, _) | blah::b(x, y) => { return x + y; } blah::c => { return 0; } }
15 }
16
17 pub fn main() {
18     assert_eq!(or_alt(blah::c), 0);
19     assert_eq!(or_alt(blah::a(10, 100, 0)), 110);
20     assert_eq!(or_alt(blah::b(20, 200)), 220);
21 }