Files
kotlin-fork/compiler/testData/diagnostics/tests/java8Overrides/hidingMethodOfAny.kt
T
2021-06-09 16:27:49 +03:00

6 lines
142 B
Kotlin
Vendored

// FIR_IDENTICAL
interface IA {
fun <!VIRTUAL_MEMBER_HIDDEN!>toString<!>(): String = "IB"
override fun equals(other: Any?): Boolean
}