summaryrefslogtreecommitdiff
path: root/test/files/run/interpreter.scala
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-10-18 10:57:42 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-10-18 10:57:42 +0000
commit973ac733622eb9409c8c5ffcf05ba14775e07b18 (patch)
treeec81eb09c08328181915a528b196f08344069cdc /test/files/run/interpreter.scala
parentbba64758bb82e940c8f2108a6a365aaf6701edfe (diff)
downloadscala-973ac733622eb9409c8c5ffcf05ba14775e07b18.tar.gz
scala-973ac733622eb9409c8c5ffcf05ba14775e07b18.tar.bz2
scala-973ac733622eb9409c8c5ffcf05ba14775e07b18.zip
Reverting fix/test for #1404.
Added test for array pretty-printing.
Diffstat (limited to 'test/files/run/interpreter.scala')
-rw-r--r--test/files/run/interpreter.scala7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/files/run/interpreter.scala b/test/files/run/interpreter.scala
index 1ebe72ed2a..dbfffd70d3 100644
--- a/test/files/run/interpreter.scala
+++ b/test/files/run/interpreter.scala
@@ -25,8 +25,11 @@ println("hello")
// ambiguous toString problem from #547
val atom = new scala.xml.Atom()
// overriding toString problem from #1404
-class S(override val toString : String)
-val fish = new S("fish")
+// commented out because the fix had to be reverted for arrays
+//class S(override val toString : String)
+//val fish = new S("fish")
+// Test that arrays pretty print nicely.
+val arr = Array("What's", "up", "doc?")
// implicit conversions
case class Foo(n: Int)