Files
kotlin-fork/compiler/testData/diagnostics/tests/java8Overrides/implementingMethodOfAny.fir.kt
T

9 lines
189 B
Kotlin
Vendored

interface IA {
override fun toString(): String = "IA"
override fun equals(other: Any?): Boolean = super.equals(other)
override fun hashCode(): Int {
return 42;
}
}