Skip to content

Commit 7532681

Browse files
committed
Add xfail-stage0 to some tests (not sure if it matters...)
1 parent 8d7f7c2 commit 7532681

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

src/test/compile-fail/assign-alias.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-stage0
12
// xfail-stage1
23
// error-pattern:assigning to immutable alias
34

src/test/compile-fail/break-outside-loop.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-stage0
12
// error-pattern:Break outside a loop
23
fn main() {
34
auto pth = break;

src/test/compile-fail/type-recursive.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-stage0
12
// error-pattern:illegal recursive type
23
type t1 = rec(int foo, t1 foolish);
34

src/test/run-fail/rhs-type.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Tests that trans treats the rhs of pth's decl
22
// as a _|_-typed thing, not a str-typed thing
3+
// xfail-stage0
34
// error-pattern:bye
45
fn main() {
56
auto pth = fail "bye";

src/test/run-pass/fn-expr.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-stage0
12
fn main() {
23
auto x = fn(int a) -> int { ret a + 1; };
34
assert (x(4) == 5);

0 commit comments

Comments
 (0)