summaryrefslogtreecommitdiff
path: root/test/files/run/reify_closure5a.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/reify_closure5a.scala')
-rw-r--r--test/files/run/reify_closure5a.scala9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/files/run/reify_closure5a.scala b/test/files/run/reify_closure5a.scala
index 2e8b413f4c..84c2c08727 100644
--- a/test/files/run/reify_closure5a.scala
+++ b/test/files/run/reify_closure5a.scala
@@ -1,4 +1,7 @@
-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 foo[T: TypeTag](ys: List[T]): Int => Int = {
@@ -6,7 +9,7 @@ object Test extends App {
x + ys.length
}}
- val toolbox = mkToolBox()
+ val toolbox = cm.mkToolBox()
val dyn = toolbox.runExpr(fun.tree)
dyn.asInstanceOf[Int => Int]
}
@@ -15,4 +18,4 @@ object Test extends App {
println(fun1(10))
var fun2 = foo(List(1, 2, 3, 4))
println(fun2(10))
-}
+} \ No newline at end of file