about summary refs log tree commit diff
path: root/src/test/compile-fail/while-loop-pred-constraints.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-08-02 23:46:52 -0700
committerBrian Anderson <banderson@mozilla.com>2011-08-03 10:55:59 -0700
commitc53402846ea7fabe8595c3f50cbc786db16d087a (patch)
treefa7f9154e49a046bf0e63e23d2886f71967b0b74 /src/test/compile-fail/while-loop-pred-constraints.rs
parent92a4c0cee701a91702d4295eef37fc2ea12bc153 (diff)
downloadrust-c53402846ea7fabe8595c3f50cbc786db16d087a.tar.gz
rust-c53402846ea7fabe8595c3f50cbc786db16d087a.zip
Remove all xfail-stage0 directives
While it is still technically possible to test stage 0, it is not part of any
of the main testing rules and maintaining xfail-stage0 is a chore. Nobody
should worry about how tests fare in stage0.
Diffstat (limited to 'src/test/compile-fail/while-loop-pred-constraints.rs')
-rw-r--r--src/test/compile-fail/while-loop-pred-constraints.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/compile-fail/while-loop-pred-constraints.rs b/src/test/compile-fail/while-loop-pred-constraints.rs
index 0cfda830ee9..43e662d643c 100644
--- a/src/test/compile-fail/while-loop-pred-constraints.rs
+++ b/src/test/compile-fail/while-loop-pred-constraints.rs
@@ -1,4 +1,3 @@
-// xfail-stage0
 // error-pattern: Unsatisfied precondition constraint (for example, even(y
 
 fn print_even(y: int) : even(y) { log y; }