summaryrefslogtreecommitdiff
path: root/test/files/run/treePrint.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-18 21:22:57 +0000
committerPaul Phillips <paulp@improving.org>2011-03-18 21:22:57 +0000
commita7d2d13732df77e67fad790d3df9674082e7169d (patch)
tree7a33e01c43510c6fb6159f52a03f0822b28e060e /test/files/run/treePrint.scala
parent0e064a7a5626ccdfeb0a6ba9cea4bf9b1b836883 (diff)
downloadscala-a7d2d13732df77e67fad790d3df9674082e7169d.tar.gz
scala-a7d2d13732df77e67fad790d3df9674082e7169d.tar.bz2
scala-a7d2d13732df77e67fad790d3df9674082e7169d.zip
Little tweak for failing test, no review.
Diffstat (limited to 'test/files/run/treePrint.scala')
-rw-r--r--test/files/run/treePrint.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/treePrint.scala b/test/files/run/treePrint.scala
index 8a77a3c9dc..ce7dd04499 100644
--- a/test/files/run/treePrint.scala
+++ b/test/files/run/treePrint.scala
@@ -37,6 +37,6 @@ object Test {
val intp = new IMain(settings, new PrintWriter(new NullOutputStream))
val power = new Power(intp)
intp.interpret("""def initialize = "Have to interpret something or we get errors." """)
- println(power mkTree code)
+ power trees code foreach println
}
}