diff options
| author | Roy Frostig <[email protected]> | 2010-06-29 00:48:49 -0700 |
|---|---|---|
| committer | Roy Frostig <[email protected]> | 2010-06-29 00:48:49 -0700 |
| commit | 0d6aaec4935ddb4d1fc8fcf96e88f8a9eae1d44e (patch) | |
| tree | 3fb4121a55da18cdacfeac5fc31211315309428f | |
| parent | The few and proud isolated bits from stdlib-work so far that don't break ever... (diff) | |
| download | rust-0d6aaec4935ddb4d1fc8fcf96e88f8a9eae1d44e.tar.xz rust-0d6aaec4935ddb4d1fc8fcf96e88f8a9eae1d44e.zip | |
Work-around and un-XFAIL generic-obj.rs test. The problem uncovered in the original XFAIL is more generally that of issue #92.
| -rw-r--r-- | src/Makefile | 1 | ||||
| -rw-r--r-- | src/test/run-pass/generic-obj.rs | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 5a72afde..31da01b1 100644 --- a/src/Makefile +++ b/src/Makefile @@ -325,7 +325,6 @@ TEST_XFAILS_X86 := test/run-pass/mlist-cycle.rs \ test/run-pass/vec-slice.rs \ test/run-pass/fn-lval.rs \ test/run-pass/generic-fn-infer.rs \ - test/run-pass/generic-obj.rs \ test/run-pass/generic-recursive-tag.rs \ test/run-pass/mutable-alias-vec.rs \ test/run-pass/mutable-vec-drop.rs \ diff --git a/src/test/run-pass/generic-obj.rs b/src/test/run-pass/generic-obj.rs index 414aaff4..1ff7d180 100644 --- a/src/test/run-pass/generic-obj.rs +++ b/src/test/run-pass/generic-obj.rs @@ -11,7 +11,7 @@ obj buf[T](tup(T,T,T) data) { } } - fn take(T t) {} + fn take(&T t) {} } fn main() { |