7e9e427d4c
- 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
3 lines
61 B
Kotlin
Vendored
3 lines
61 B
Kotlin
Vendored
interface IC {
|
|
fun toString(x: String): String = "IC$x"
|
|
} |