summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-01-25 13:39:20 -0800
committerPaul Phillips <paulp@improving.org>2013-01-25 13:39:50 -0800
commit950e938bb08afc08ba6b91af5468d0f703924356 (patch)
tree37ec7fc360018b67a2b2b0e235bd322a873e74e1 /test
parentff2ca683cb75b18e8001680aa3ec752929179925 (diff)
downloadscala-950e938bb08afc08ba6b91af5468d0f703924356.tar.gz
scala-950e938bb08afc08ba6b91af5468d0f703924356.tar.bz2
scala-950e938bb08afc08ba6b91af5468d0f703924356.zip
Revert "SI-5824 Fix crashes in reify with _*"
This reverts commit 0a25ee3431d0314c782dd2e6620bc75c4de0d1a4. It came with a test failure which I overlooked.
Diffstat (limited to 'test')
-rw-r--r--test/files/run/t5824.check1
-rw-r--r--test/files/run/t5824.scala8
2 files changed, 0 insertions, 9 deletions
diff --git a/test/files/run/t5824.check b/test/files/run/t5824.check
deleted file mode 100644
index 3774da60e5..0000000000
--- a/test/files/run/t5824.check
+++ /dev/null
@@ -1 +0,0 @@
-a b c
diff --git a/test/files/run/t5824.scala b/test/files/run/t5824.scala
deleted file mode 100644
index 2ad169e2d1..0000000000
--- a/test/files/run/t5824.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.tools.reflect.Eval
-
-object Test extends App {
- reify {
- println("%s %s %s".format(List("a", "b", "c"): _*))
- }.eval
-}