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.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/pending/run/reify_closures11.scala b/test/pending/run/reify_closures11.scala
index 42053bd029..2c4177b8f2 100644
--- a/test/pending/run/reify_closures11.scala
+++ b/test/pending/run/reify_closures11.scala
@@ -11,8 +11,7 @@ object Test extends App {
val reporter = new ConsoleReporter(new Settings)
val toolbox = new ToolBox(reporter)
- val ttree = toolbox.typeCheck(fun().tree)
- val dyn = toolbox.runExpr(ttree)
+ val dyn = toolbox.runExpr(fun().tree)
val foo = dyn.asInstanceOf[Int]
println(foo)
}