blob: dbc08f681c333bb8d00b4905eb4f9aef545cc93f [file]
// TARGET_BACKEND: JVM
// FILE: internalRemoveFromJava.kt
class Test<T> : Collection<T> {
override val size: Int get() = TODO()
override fun contains(element: T): Boolean = TODO()
override fun containsAll(elements: Collection<T>): Boolean = TODO()
override fun isEmpty(): Boolean = TODO()
override fun iterator(): Iterator<T> = TODO()
internal fun remove(x: T): Boolean = false
}
fun box(): String {
val t = Test<String>()
return if (J.testRemove(t, "") == false)
"OK"
else
"Fail"
}
// FILE: J.java
import java.util.Collection;
public class J {
public static <T> boolean testRemove(Collection<T> c, T x) {
return c.remove(x);
}
}