2011-06-22 22:05:11 -07:00
|
|
|
// Issue #53
|
|
|
|
|
|
|
|
fn main() {
|
2012-08-06 12:34:08 -07:00
|
|
|
match check ~"test" { ~"not-test" => fail, ~"test" => (), _ => fail }
|
2011-06-22 22:05:11 -07:00
|
|
|
|
2012-07-13 22:57:48 -07:00
|
|
|
enum t { tag1(~str), tag2, }
|
2011-06-22 22:05:11 -07:00
|
|
|
|
2011-07-27 14:19:39 +02:00
|
|
|
|
2012-08-06 12:34:08 -07:00
|
|
|
match tag1(~"test") {
|
2012-08-03 19:59:04 -07:00
|
|
|
tag2 => fail,
|
|
|
|
tag1(~"not-test") => fail,
|
|
|
|
tag1(~"test") => (),
|
|
|
|
_ => fail
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
2011-08-31 22:34:41 -07:00
|
|
|
|
2012-08-06 12:34:08 -07:00
|
|
|
let x = match check ~"a" { ~"a" => 1, ~"b" => 2 };
|
2011-09-02 15:34:58 -07:00
|
|
|
assert (x == 1);
|
2011-08-31 22:34:41 -07:00
|
|
|
|
2012-08-06 12:34:08 -07:00
|
|
|
match check ~"a" { ~"a" => { } ~"b" => { } }
|
2011-08-31 22:34:41 -07:00
|
|
|
|
2011-08-19 15:16:48 -07:00
|
|
|
}
|