summaryrefslogtreecommitdiff
path: root/test/files/run/t3888.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-10-04 16:15:17 +0000
committerPaul Phillips <paulp@improving.org>2010-10-04 16:15:17 +0000
commitff1e0647c18c4a79f1276b0d0a2360faed03b7d0 (patch)
treeef4e0b7fe342106b8ebcdb570e6e689d14e9c9cb /test/files/run/t3888.scala
parente0372eddc160678010c2b45be84a04af81ff63e5 (diff)
downloadscala-ff1e0647c18c4a79f1276b0d0a2360faed03b7d0.tar.gz
scala-ff1e0647c18c4a79f1276b0d0a2360faed03b7d0.tar.bz2
scala-ff1e0647c18c4a79f1276b0d0a2360faed03b7d0.zip
Reverts r23174, which I believe will bring the ...
Reverts r23174, which I believe will bring the build back to life. It only chokes under -optimise. No review.
Diffstat (limited to 'test/files/run/t3888.scala')
-rw-r--r--test/files/run/t3888.scala26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/files/run/t3888.scala b/test/files/run/t3888.scala
deleted file mode 100644
index ecdf87e925..0000000000
--- a/test/files/run/t3888.scala
+++ /dev/null
@@ -1,26 +0,0 @@
-object Test {
-
- val T1 = new P
- private[this] val T2 = T1
-
- def m1 =
- (1, 2) match {
- case T1 => true
- case _ => false
- }
-
- def m2 =
- (1, 2) match {
- case T2 => true
- case _ => false
- }
-
- def main(args: Array[String]) = {
- assert( m1 )
- assert( m2 )
- }
-}
-
-class P extends Pair(1, 1) {
- override def equals(x: Any) = true
-} \ No newline at end of file