summaryrefslogtreecommitdiff
path: root/test/pending/run/reify_newimpl_46.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/reify_newimpl_46.scala')
-rw-r--r--test/pending/run/reify_newimpl_46.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pending/run/reify_newimpl_46.scala b/test/pending/run/reify_newimpl_46.scala
index 239c53953b..d063be0486 100644
--- a/test/pending/run/reify_newimpl_46.scala
+++ b/test/pending/run/reify_newimpl_46.scala
@@ -8,7 +8,7 @@ object Test extends App {
val code = reify{val x: T[String] = null; println("ima worx"); x}.tree
println(code.freeTypes)
val T = code.freeTypes(0)
- cm.mkToolBox().runExpr(code, Map(T -> definitions.ListClass.asType))
+ cm.mkToolBox().eval(code, Map(T -> definitions.ListClass.asType))
}
new C[List]