summaryrefslogtreecommitdiff
path: root/test/files/scalap/caseObject/result.test
diff options
context:
space:
mode:
authorSom Snytt <som.snytt@gmail.com>2013-03-22 14:39:19 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2013-04-04 10:57:42 -0700
commitc6ce61796f66770ca1b4d63fc0a569f064436433 (patch)
treeaa263d2764bcf47f024374d6538d94cc952199eb /test/files/scalap/caseObject/result.test
parent7bb981a9ebb8700c81eca7062537b02bff9b0035 (diff)
downloadscala-c6ce61796f66770ca1b4d63fc0a569f064436433.tar.gz
scala-c6ce61796f66770ca1b4d63fc0a569f064436433.tar.bz2
scala-c6ce61796f66770ca1b4d63fc0a569f064436433.zip
SI-6289 Partest in technicolor and showing javac errors
Paulptest includes color and simplified test scarfing. Scalap tests are moved to the conventional name and location. Testicolor missed out on Josh Suereth's tweak to sort the files in a compilation round. Restore sortiness to test sources. Testicolor is due to one of Paul's branches on a timeline that apparently did not include the destruction of planet Earth and its colonies by the Xindi. Thanks also to Szabolcs Berecz for his merge effort. Merging is thankless work, but not as thankless as merging in a timeline that actually does terminate in the destruction of your home world and Enterprise. Archer had a supremely difficult choice: rescue humanity or live out his retirement with T'Pol waiting on him hand and foot? I'm sure I don't know how I'd choose.
Diffstat (limited to 'test/files/scalap/caseObject/result.test')
-rw-r--r--test/files/scalap/caseObject/result.test10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/files/scalap/caseObject/result.test b/test/files/scalap/caseObject/result.test
deleted file mode 100644
index 867a4b2162..0000000000
--- a/test/files/scalap/caseObject/result.test
+++ /dev/null
@@ -1,10 +0,0 @@
-case object CaseObject extends scala.AnyRef with scala.Product with scala.Serializable {
- def bar : scala.Int = { /* compiled code */ }
- override def productPrefix : java.lang.String = { /* compiled code */ }
- def productArity : scala.Int = { /* compiled code */ }
- def productElement(x$1 : scala.Int) : scala.Any = { /* compiled code */ }
- override def productIterator : scala.collection.Iterator[scala.Any] = { /* compiled code */ }
- def canEqual(x$1 : scala.Any) : scala.Boolean = { /* compiled code */ }
- override def hashCode() : scala.Int = { /* compiled code */ }
- override def toString() : java.lang.String = { /* compiled code */ }
-}