mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
36 lines
738 B
Kotlin
Vendored
36 lines
738 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// TARGET_BACKEND: JVM
|
|
|
|
// WITH_RUNTIME
|
|
// 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]
|