]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/match-str.rs
Auto merge of #28465 - apasel422:tidy, r=alexcrichton
[rust.git] / src / test / run-pass / match-str.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 // Issue #53
12
13
14 pub fn main() {
15     match "test" { "not-test" => panic!(), "test" => (), _ => panic!() }
16
17     enum t { tag1(String), tag2, }
18
19
20     match t::tag1("test".to_string()) {
21       t::tag2 => panic!(),
22       t::tag1(ref s) if "test" != &**s => panic!(),
23       t::tag1(ref s) if "test" == &**s => (),
24       _ => panic!()
25     }
26
27     let x = match "a" { "a" => 1, "b" => 2, _ => panic!() };
28     assert_eq!(x, 1);
29
30     match "a" { "a" => { } "b" => { }, _ => panic!() }
31
32 }