summaryrefslogtreecommitdiff
path: root/test/files/run
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
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')
-rw-r--r--test/files/run/interpreter.check8
-rw-r--r--test/files/run/interpreter.scala7
2 files changed, 10 insertions, 5 deletions
diff --git a/test/files/run/interpreter.check b/test/files/run/interpreter.check
index 64eeca14ba..313a817968 100644
--- a/test/files/run/interpreter.check
+++ b/test/files/run/interpreter.check
@@ -37,9 +37,11 @@ scala>
scala> atom: scala.xml.Atom[Unit] = ()
scala>
-scala> defined class S
-
-scala> fish: S = fish
+scala>
+scala>
+scala>
+scala>
+scala> arr: Array[java.lang.String] = Array(What's, up, doc?)
scala>
scala>
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)