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

32 lines
879 B
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// Issue #53
fn main() {
match ~"test" { ~"not-test" => die!(), ~"test" => (), _ => die!() }
enum t { tag1(~str), tag2, }
2011-07-27 07:19:39 -05:00
2012-08-06 14:34:08 -05:00
match tag1(~"test") {
tag2 => die!(),
tag1(~"not-test") => die!(),
2012-08-03 21:59:04 -05:00
tag1(~"test") => (),
_ => die!()
2011-07-27 07:19:39 -05:00
}
2011-09-01 00:34:41 -05:00
let x = match ~"a" { ~"a" => 1, ~"b" => 2, _ => die!() };
2011-09-02 17:34:58 -05:00
assert (x == 1);
2011-09-01 00:34:41 -05:00
match ~"a" { ~"a" => { } ~"b" => { }, _ => die!() }
2011-09-01 00:34:41 -05:00
}