Files
kotlin-fork/backend.native/tests/external/codegen/box/super/kt14243.kt
T
2017-03-13 15:31:46 +03:00

18 lines
256 B
Kotlin

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