rust/src/test/run-pass/alt-str.rs

22 lines
394 B
Rust
Raw Normal View History

// Issue #53
fn main() {
2012-08-06 12:34:08 -07:00
match check ~"test" { ~"not-test" => fail, ~"test" => (), _ => fail }
enum t { tag1(~str), tag2, }
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
}