summaryrefslogtreecommitdiff
path: root/test/files/run/t2886.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-07-29 21:38:38 +0000
committerPaul Phillips <paulp@improving.org>2011-07-29 21:38:38 +0000
commit902c61f397069b9918f1854b8bf95a50b52c08fc (patch)
treef4c5aad4bee75936f5112064daf4501cf7c368c4 /test/files/run/t2886.scala
parent4231a0bc06765d914790078c184c525b9b7a1ef4 (diff)
downloadscala-902c61f397069b9918f1854b8bf95a50b52c08fc.tar.gz
scala-902c61f397069b9918f1854b8bf95a50b52c08fc.tar.bz2
scala-902c61f397069b9918f1854b8bf95a50b52c08fc.zip
Disabled all the old scala.reflect._ tests whic...
Disabled all the old scala.reflect._ tests which are now crash-failing, no review.
Diffstat (limited to 'test/files/run/t2886.scala')
-rw-r--r--test/files/run/t2886.scala7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/files/run/t2886.scala b/test/files/run/t2886.scala
deleted file mode 100644
index eb392f0c58..0000000000
--- a/test/files/run/t2886.scala
+++ /dev/null
@@ -1,7 +0,0 @@
-object Test {
- def test(name: String, address: String) = null
- def main(args: Array[String]) = {
- val tree = scala.reflect.Code.lift((x:String) => test(address=x,name=x)).tree
- println(tree)
- }
-}