Files
kotlin-fork/compiler/testData/codegen/box/super/kt14243_2.kt
T
2020-04-27 11:50:26 +03:00

20 lines
297 B
Kotlin
Vendored

interface Z<T> {
fun test(p: T): T {
return p
}
}
open class ZImpl : Z<String>
open class ZImpl2 : Z<String>, ZImpl()
class ZImpl3 : ZImpl2() {
override fun test(p: String): String {
return super.test(p)
}
}
fun box(): String {
return ZImpl3().test("OK")
}