summaryrefslogtreecommitdiff
path: root/test/files/run/reify_closure8a.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/reify_closure8a.scala')
-rw-r--r--test/files/run/reify_closure8a.scala9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/files/run/reify_closure8a.scala b/test/files/run/reify_closure8a.scala
index 9de121b42f..8db3d38241 100644
--- a/test/files/run/reify_closure8a.scala
+++ b/test/files/run/reify_closure8a.scala
@@ -1,12 +1,15 @@
-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 {
class Foo(val y: Int) {
def fun = reify{y}
}
- val toolbox = mkToolBox()
+ val toolbox = cm.mkToolBox()
val dyn = toolbox.runExpr(new Foo(10).fun.tree)
val foo = dyn.asInstanceOf[Int]
println(foo)
-}
+} \ No newline at end of file