3ba776fffa
#KT-11176 Fixed (cherry picked from commit 3641ad6)
20 lines
346 B
Plaintext
Vendored
20 lines
346 B
Plaintext
Vendored
class Test {
|
|
var serial: String = ""
|
|
get
|
|
set
|
|
var name: String = ""
|
|
get
|
|
|
|
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
|
|
}
|
|
|
|
}
|
|
|
|
// FORCED |