]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/expr-match.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / expr-match.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
12
13
14
15 // Tests for using match as an expression
16 fn test_basic() {
17     let mut rs: bool = match true { true => { true } false => { false } };
18     assert!((rs));
19     rs = match false { true => { false } false => { true } };
20     assert!((rs));
21 }
22
23 fn test_inferrence() {
24     let rs = match true { true => { true } false => { false } };
25     assert!((rs));
26 }
27
28 fn test_alt_as_alt_head() {
29     // Yeah, this is kind of confusing ...
30
31     let rs =
32         match match false { true => { true } false => { false } } {
33           true => { false }
34           false => { true }
35         };
36     assert!((rs));
37 }
38
39 fn test_alt_as_block_result() {
40     let rs =
41         match false {
42           true => { false }
43           false => { match true { true => { true } false => { false } } }
44         };
45     assert!((rs));
46 }
47
48 pub fn main() {
49     test_basic();
50     test_inferrence();
51     test_alt_as_alt_head();
52     test_alt_as_block_result();
53 }