summaryrefslogtreecommitdiff
path: root/test/files/run/t5229_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5229_2.scala')
-rw-r--r--test/files/run/t5229_2.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/files/run/t5229_2.scala b/test/files/run/t5229_2.scala
index 67be7328a6..07f9ac6b84 100644
--- a/test/files/run/t5229_2.scala
+++ b/test/files/run/t5229_2.scala
@@ -13,7 +13,6 @@ object Test extends App {
val reporter = new ConsoleReporter(new Settings)
val toolbox = new ToolBox(reporter)
- val ttree = toolbox.typeCheck(code.tree)
- val evaluated = toolbox.runExpr(ttree)
+ val evaluated = toolbox.runExpr(code.tree)
println("evaluated = " + evaluated)
}