9f9287fb2e
#KT-61751 Fixed
25 lines
443 B
Kotlin
Vendored
25 lines
443 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// MODULE: lib
|
|
// FILE: A.java
|
|
|
|
public abstract class A<T> {
|
|
protected abstract String doIt(T... args);
|
|
|
|
public <S extends T> String test(S... args) {
|
|
return doIt(args);
|
|
}
|
|
}
|
|
|
|
// MODULE: main(lib)
|
|
// FILE: 1.kt
|
|
|
|
open class Super
|
|
class Sub: Super()
|
|
|
|
val a: A<Super> =
|
|
object : A<Super>() {
|
|
override fun doIt(vararg parameters: Super): String = "OK"
|
|
}
|
|
|
|
fun box(): String = a.test<Sub>()
|