summaryrefslogtreecommitdiff
path: root/test/files/neg/t6534.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t6534.check')
-rw-r--r--test/files/neg/t6534.check5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/files/neg/t6534.check b/test/files/neg/t6534.check
index bd7dc4b71c..52e70cfa8a 100644
--- a/test/files/neg/t6534.check
+++ b/test/files/neg/t6534.check
@@ -10,5 +10,8 @@ class Bippy3(val x: Int) extends AnyVal { override def equals(x: Any) = false }
t6534.scala:7: error: redefinition of hashCode method. See SIP-15, criterion 4. is not allowed in value class
class Bippy4(val x: Int) extends AnyVal { override def hashCode = -1 } // error
^
+t6534.scala:9: error: redefinition of equals method. See SIP-15, criterion 4. is not allowed in value class
+case class Bippy6(val x: Int) extends AnyVal { override def productPrefix = "Dingo" ; override def equals(x: Any) = false } // error
+ ^
two warnings found
-two errors found
+three errors found