2012-12-10 17:32:48 -08:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2011-06-22 22:05:11 -07:00
|
|
|
// Issue #53
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2014-10-09 15:17:22 -04:00
|
|
|
match "test" { "not-test" => panic!(), "test" => (), _ => panic!() }
|
2011-06-22 22:05:11 -07:00
|
|
|
|
2014-05-22 16:57:53 -07:00
|
|
|
enum t { tag1(String), tag2, }
|
2011-06-22 22:05:11 -07:00
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
|
2014-11-06 00:05:53 -08:00
|
|
|
match t::tag1("test".to_string()) {
|
|
|
|
t::tag2 => panic!(),
|
2015-02-01 21:53:25 -05:00
|
|
|
t::tag1(ref s) if "test" != &**s => panic!(),
|
|
|
|
t::tag1(ref s) if "test" == &**s => (),
|
2014-10-09 15:17:22 -04:00
|
|
|
_ => panic!()
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
2011-08-31 22:34:41 -07:00
|
|
|
|
2015-01-25 22:05:03 +01:00
|
|
|
let x = match "a" { "a" => 1, "b" => 2, _ => panic!() };
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(x, 1);
|
2011-08-31 22:34:41 -07:00
|
|
|
|
2014-10-09 15:17:22 -04:00
|
|
|
match "a" { "a" => { } "b" => { }, _ => panic!() }
|
2011-08-31 22:34:41 -07:00
|
|
|
|
2011-08-19 15:16:48 -07:00
|
|
|
}
|