summaryrefslogtreecommitdiff
path: root/test/pending/run/reify_closures11.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/reify_closures11.scala')
-rw-r--r--test/pending/run/reify_closures11.scala10
1 files changed, 7 insertions, 3 deletions
diff --git a/test/pending/run/reify_closures11.scala b/test/pending/run/reify_closures11.scala
index ceb224c6d6..4c21033cbc 100644
--- a/test/pending/run/reify_closures11.scala
+++ b/test/pending/run/reify_closures11.scala
@@ -1,12 +1,16 @@
-import scala.reflect.mirror._
+import scala.reflect.runtime.universe._
+import scala.reflect.runtime.{universe => ru}
+import scala.reflect.runtime.{currentMirror => cm}
+import scala.tools.reflect.ToolBox
+
object Test extends App {
def fun() = {
def z() = 2
reify{z}
}
- val toolbox = mkToolBox()
+ val toolbox = cm.mkToolBox()
val dyn = toolbox.runExpr(fun().tree)
val foo = dyn.asInstanceOf[Int]
println(foo)
-}
+} \ No newline at end of file