Files
kotlin-fork/compiler/testData/codegen/box/collections/toArrayInJavaClass.kt
T
Ivan Kylchik c7435ba760 Replace all occurrences of WITH_RUNTIME with WITH_STDLIB
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.
2021-11-17 15:26:38 +03:00

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]