16 lines
279 B
Plaintext
Vendored
16 lines
279 B
Plaintext
Vendored
// FORCED
|
|
class A {
|
|
fun foo() {
|
|
|
|
}
|
|
|
|
<caret>override fun equals(other: Any?): Boolean{
|
|
if (this === other) return true
|
|
if (other?.javaClass != javaClass) return false
|
|
return true
|
|
}
|
|
|
|
override fun hashCode(): Int{
|
|
return 0
|
|
}
|
|
} |