Files
kotlin-fork/compiler/testData/diagnostics/tests/constructorConsistency/comparison.fir.kt
T

11 lines
263 B
Kotlin
Vendored

val instance = My()
class My {
val equalsInstance = (this == instance)
val isInstance = if (this === instance) "true" else "false"
override fun equals(other: Any?) =
other is My && isInstance.hashCode() == other.isInstance.hashCode()
}