]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-15129.rs
auto merge of #19514 : jbranchaud/rust/add-btree-set-bitor, r=Gankro
[rust.git] / src / test / run-pass / issue-15129.rs
1 // Copyright 2014 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 pub enum T {
12     T1(()),
13     T2(())
14 }
15
16 pub enum V {
17     V1(int),
18     V2(bool)
19 }
20
21 fn foo(x: (T, V)) -> String {
22     match x {
23         (T::T1(()), V::V1(i))  => format!("T1(()), V1({})", i),
24         (T::T2(()), V::V2(b))  => format!("T2(()), V2({})", b),
25         _ => String::new()
26     }
27 }
28
29
30 fn main() {
31     assert_eq!(foo((T::T1(()), V::V1(99))), "T1(()), V1(99)".to_string());
32     assert_eq!(foo((T::T2(()), V::V2(true))), "T2(()), V2(true)".to_string());
33 }