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

22 lines
386 B
Rust
Raw Normal View History

// Issue #53
fn main() {
2012-08-03 21:59:04 -05:00
alt check ~"test" { ~"not-test" => fail, ~"test" => (), _ => fail }
enum t { tag1(~str), tag2, }
2011-07-27 07:19:39 -05:00
alt 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-03 21:59:04 -05:00
let x = alt check ~"a" { ~"a" => 1, ~"b" => 2 };
2011-09-02 17:34:58 -05:00
assert (x == 1);
2011-09-01 00:34:41 -05:00
2012-08-03 21:59:04 -05:00
alt check ~"a" { ~"a" => { } ~"b" => { } }
2011-09-01 00:34:41 -05:00
}