18b01d5cfe
XFAIL the ones that don't work Issue #409
12 lines
222 B
Rust
12 lines
222 B
Rust
// xfail-test
|
|
|
|
type foo = {a: int, b: uint};
|
|
tag bar { u(~foo); w(int); }
|
|
|
|
fn main() {
|
|
assert (alt u(~{a: 10, b: 40u}) {
|
|
u(~{a: a, b: b}) { a + (b as int) }
|
|
_ { 66 }
|
|
} == 50);
|
|
}
|