summaryrefslogblamecommitdiff
path: root/test/files/neg/t6534.check
blob: bd7dc4b71c826a65f4c88dad335e47addb2b67d3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                                                                                        
t6534.scala:4: warning: Implementation of equals inherited from trait Foo overridden in class Bippy1 to enforce value class semantics
class Bippy1(val x: Int) extends AnyVal with Foo { }  // warn
      ^
t6534.scala:5: warning: Implementation of hashCode inherited from trait Ding overridden in class Bippy2 to enforce value class semantics
class Bippy2(val x: Int) extends AnyVal with Ding { } // warn
      ^
t6534.scala:6: error: redefinition of equals method. See SIP-15, criterion 4. is not allowed in value class
class Bippy3(val x: Int) extends AnyVal { override def equals(x: Any) = false } // error
                                                       ^
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
                                                       ^
two warnings found
two errors found