summaryrefslogtreecommitdiff
path: root/test/pending/run/reify_closure9a.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/reify_closure9a.scala')
-rw-r--r--test/pending/run/reify_closure9a.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/pending/run/reify_closure9a.scala b/test/pending/run/reify_closure9a.scala
index f3ee153d3c..185f4ffca1 100644
--- a/test/pending/run/reify_closure9a.scala
+++ b/test/pending/run/reify_closure9a.scala
@@ -11,8 +11,7 @@ object Test extends App {
val reporter = new ConsoleReporter(new Settings)
val toolbox = new ToolBox(reporter)
- val ttree = toolbox.typeCheck(new Foo(y).fun.tree)
- val dyn = toolbox.runExpr(ttree)
+ val dyn = toolbox.runExpr(new Foo(y).fun.tree)
dyn.asInstanceOf[Int]
}