summaryrefslogtreecommitdiff
path: root/test/files/run/bug576-regress.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/bug576-regress.scala')
-rw-r--r--test/files/run/bug576-regress.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/files/run/bug576-regress.scala b/test/files/run/bug576-regress.scala
deleted file mode 100644
index b608dd5a42..0000000000
--- a/test/files/run/bug576-regress.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-class A {
- override def equals(other: Any) = other match {
- case _: this.type => true
- case _ => false
- }
-}
-
-object Test {
- def main(args: Array[String]): Unit = {
- val x1 = new A
- val x2 = new A
- assert(x1 == x1)
- assert(x1 != x2)
- assert(x1 != ())
- assert(x2 != x1)
- }
-} \ No newline at end of file