blob: 21405583b1159b1e32cd69059b4b5d2fe8aefbd0 [file]
// PLATFORM: Common
class A {
fun foo() {
}
<caret>override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
return true
}
override fun hashCode(): Int {
return this::class.hashCode()
}
}