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

22 lines
398 B
Rust
Raw Normal View History

// Issue #53
fn main() {
2012-08-23 16:44:58 -05:00
match ~"test" { ~"not-test" => fail, ~"test" => (), _ => fail }
enum t { tag1(~str), tag2, }
2011-07-27 07:19:39 -05:00
2012-08-06 14:34:08 -05:00
match tag1(~"test") {
2012-08-03 21:59:04 -05:00
tag2 => fail,
tag1(~"not-test") => fail,
tag1(~"test") => (),
_ => fail
2011-07-27 07:19:39 -05:00
}
2011-09-01 00:34:41 -05:00
2012-08-23 16:44:58 -05:00
let x = match ~"a" { ~"a" => 1, ~"b" => 2, _ => fail };
2011-09-02 17:34:58 -05:00
assert (x == 1);
2011-09-01 00:34:41 -05:00
2012-08-23 16:44:58 -05:00
match ~"a" { ~"a" => { } ~"b" => { }, _ => fail }
2011-09-01 00:34:41 -05:00
}