Files
kotlin/compiler/testData/diagnostics/tests/java8Overrides/hidingMethodOfAny.kt
2017-05-26 13:58:46 +03:00

5 lines
125 B
Kotlin
Vendored

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