summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
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
-}