blob: 93a65d6297762de77181ac2a5a5c9117839f1043 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// -*- 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(); }
|