summaryrefslogtreecommitdiff
path: root/test/files/run/t2886.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2011-08-23 11:58:15 +0000
committerMartin Odersky <odersky@gmail.com>2011-08-23 11:58:15 +0000
commite69822117c99a6c79a69a5b4dde3a82040400bb3 (patch)
tree0fee23c32b028e948c3c1445df8aeb325cc77166 /test/files/run/t2886.scala
parenta93134b4832e95ff014f162f4cc8667f8136cb7d (diff)
downloadscala-e69822117c99a6c79a69a5b4dde3a82040400bb3.tar.gz
scala-e69822117c99a6c79a69a5b4dde3a82040400bb3.tar.bz2
scala-e69822117c99a6c79a69a5b4dde3a82040400bb3.zip
New reification code for symbols and types.
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)
- }
-}