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

5 lines
97 B
Kotlin
Vendored

interface IA {
fun toString(): String = "IB"
override fun equals(other: Any?): Boolean
}