aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorPatrick Walton <[email protected]>2011-02-24 13:51:18 -0800
committerPatrick Walton <[email protected]>2011-02-24 13:51:18 -0800
commit5332250d3bddf509994832965f3c5d7b68662ce4 (patch)
treea293dd6ff789de49d81098cf5d162180c86b6617 /src/test
parentCast more aggressively to the callee type when calling generic functions. Add... (diff)
downloadrust-5332250d3bddf509994832965f3c5d7b68662ce4.tar.xz
rust-5332250d3bddf509994832965f3c5d7b68662ce4.zip
Revert "Cast more aggressively to the callee type when calling generic functions. Add a test-case for this, and XFAIL it in rustboot." due to test failures
This reverts commit 0a65283c5eeae0b98fff7d213dbaad59889e677e.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-pass/generic-fn-box.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/run-pass/generic-fn-box.rs b/src/test/run-pass/generic-fn-box.rs
deleted file mode 100644
index e821a784..00000000
--- a/src/test/run-pass/generic-fn-box.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-fn f[T](@T x) -> @T {
- ret x;
-}
-
-fn main() {
- auto x = f(@3);
- log *x;
-}
-