c7435ba760
We are going to deprecate `WITH_RUNTIME` directive. The main reason behind this change is that `WITH_STDLIB` directive better describes its meaning, specifically it will add kotlin stdlib to test's classpath.
35 lines
707 B
Kotlin
Vendored
35 lines
707 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
|
|
// WITH_STDLIB
|
|
// FILE: B.java
|
|
public class B<E> extends A<E> {
|
|
@Override
|
|
public <T> T[] toArray(T[] a) {
|
|
return a;
|
|
}
|
|
}
|
|
|
|
// FILE: main.kt
|
|
open class A<T> : Collection<T> {
|
|
override val size: Int
|
|
get() = TODO("Not yet implemented")
|
|
|
|
override fun contains(element: T): Boolean {
|
|
TODO("Not yet implemented")
|
|
}
|
|
|
|
override fun containsAll(elements: Collection<T>): Boolean {
|
|
TODO("Not yet implemented")
|
|
}
|
|
|
|
override fun isEmpty(): Boolean {
|
|
TODO("Not yet implemented")
|
|
}
|
|
|
|
override fun iterator(): Iterator<T> {
|
|
TODO("Not yet implemented")
|
|
}
|
|
}
|
|
|
|
fun box() = B<String>().toArray(arrayOf("OK"))[0]
|