mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
- report errors on implementing methods of Any in interfaces - update testData ~~~ Java 8 override restrictions: interface can't implement a method of 'Any' - update compiler sources
5 lines
125 B
Kotlin
Vendored
5 lines
125 B
Kotlin
Vendored
interface IA {
|
|
<!VIRTUAL_MEMBER_HIDDEN!>fun toString(): String<!> = "IB"
|
|
|
|
override fun equals(other: Any?): Boolean
|
|
} |