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