07667d29aa
So that the tinderboxes can go green again. Patrick, please look into this at some point.
28 lines
340 B
Rust
28 lines
340 B
Rust
// xfail-stage0
|
|
// xfail-stage1
|
|
// xfail-stage2
|
|
// -*- rust -*-
|
|
use std;
|
|
import std::option;
|
|
import std::option::some;
|
|
|
|
// error-pattern: mismatched types
|
|
|
|
tag bar {
|
|
t1((), option::t[vec[int]]);
|
|
t2;
|
|
}
|
|
|
|
fn foo(bar t) {
|
|
alt (t) {
|
|
case (t1(_, some[int](?x))) {
|
|
log x;
|
|
}
|
|
case (_) {
|
|
fail;
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
} |