Add to generic-obj.rs testcase a method that takes an argument of the object type-param type. XFAIL the test since it no longer passes.

This commit is contained in:
Roy Frostig 2010-06-28 21:45:48 -07:00
parent 5b5b334c24
commit d5ff6e133c
2 changed files with 3 additions and 0 deletions

View File

@ -321,6 +321,7 @@ 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 \

View File

@ -10,6 +10,8 @@ fn get(int i) -> T {
}
}
}
fn take(T t) {}
}
fn main() {