diff options
| author | Brian Anderson <[email protected]> | 2011-01-07 01:39:58 -0500 |
|---|---|---|
| committer | Brian Anderson <[email protected]> | 2011-01-30 15:55:27 -0500 |
| commit | a2789363e107114fdc0ff45a208ae67a56bce73a (patch) | |
| tree | d64f47d05cadf737dc5eaeb817c3c258b043195a /src/test/compile-fail | |
| parent | Fix a bug in linearize and get the captured tydescs type right. (diff) | |
| download | rust-a2789363e107114fdc0ff45a208ae67a56bce73a.tar.xz rust-a2789363e107114fdc0ff45a208ae67a56bce73a.zip | |
Reenable xfailed tests for rustboot that pass with trivial or no modifications
Diffstat (limited to 'src/test/compile-fail')
| -rw-r--r-- | src/test/compile-fail/infinite-vec-type-recursion.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/infinite-vec-type-recursion.rs b/src/test/compile-fail/infinite-vec-type-recursion.rs index 7c82700a..9315488b 100644 --- a/src/test/compile-fail/infinite-vec-type-recursion.rs +++ b/src/test/compile-fail/infinite-vec-type-recursion.rs @@ -1,6 +1,6 @@ // -*- rust -*- -// error-pattern: Infinite type recursion +// error-pattern: infinite recursive type definition type x = vec[x]; |