18 lines
309 B
Rust
18 lines
309 B
Rust
|
|
|
|
|
|
// -*- rust -*-
|
|
|
|
// Tests for alt as expressions resulting in boxed types
|
|
fn test_box() {
|
|
let res = alt check true { true { @100 } };
|
|
assert (*res == 100);
|
|
}
|
|
|
|
fn test_str() {
|
|
let res = alt check true { true { ~"happy" } };
|
|
assert (res == ~"happy");
|
|
}
|
|
|
|
fn main() { test_box(); test_str(); }
|