22 lines
317 B
Kotlin
Vendored
22 lines
317 B
Kotlin
Vendored
// JVM_TARGET: 1.8
|
|
|
|
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")
|
|
} |