Files
kotlin/compiler/testData/codegen/box/bridges/noBridgeOnMutableCollectionInheritance.kt
2015-10-12 11:11:23 +02:00

25 lines
495 B
Kotlin
Vendored

import java.util.ArrayList
import java.util.Arrays
interface A {
fun foo(): Collection<String>
}
interface B : A {
override fun foo(): MutableCollection<String>
}
class C : B {
override fun foo(): MutableList<String> = ArrayList(Arrays.asList("C"))
}
fun box(): String {
val c = C()
var r = c.foo().iterator().next()
val b: B = c
val a: A = c
r += b.foo().iterator().next()
r += a.foo().iterator().next()
return if (r == "CCC") "OK" else "Fail: $r"
}