summaryrefslogtreecommitdiff
path: root/test/files/run/treePrint.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-04-27 07:40:17 +0000
committerPaul Phillips <paulp@improving.org>2010-04-27 07:40:17 +0000
commitfa715fdd66f444d756ffe91417ac0937f7de6592 (patch)
tree6cecb45d5b70781aa4712c07e2346c986322c4f5 /test/files/run/treePrint.scala
parent4f24cb62ce0932938d5428ec6e4b02b670c4a173 (diff)
downloadscala-fa715fdd66f444d756ffe91417ac0937f7de6592.tar.gz
scala-fa715fdd66f444d756ffe91417ac0937f7de6592.tar.bz2
scala-fa715fdd66f444d756ffe91417ac0937f7de6592.zip
Fixing the test I broke with the last commit.
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 ffe9a392d4..1fd1394e25 100644
--- a/test/files/run/treePrint.scala
+++ b/test/files/run/treePrint.scala
@@ -35,6 +35,6 @@ object Test {
val repl = new Interpreter(settings, new PrintWriter(new NullOutputStream))
repl.interpret("""def initialize = "Have to interpret something or we get errors." """)
- println(repl mkTree code)
+ println(repl.power mkTree code)
}
}