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

22 lines
369 B
Rust
Raw Normal View History

// Issue #53
fn main() {
alt check "test" { "not-test" { fail; } "test" { } _ { fail; } }
enum t { tag1(str), tag2, }
2011-07-27 07:19:39 -05:00
2011-09-02 17:34:58 -05:00
alt tag1("test") {
tag2 { fail; }
2011-09-02 17:34:58 -05:00
tag1("not-test") { fail; }
tag1("test") { }
2011-07-27 07:19:39 -05:00
_ { fail; }
}
2011-09-01 00:34:41 -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
alt check "a" { "a" { } "b" { } }
2011-09-01 00:34:41 -05:00
}