Files
kotlin-fork/compiler/testData/codegen/box/super/kt14243.kt
T
2019-11-19 11:00:09 +03:00

19 lines
286 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
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")
}