Files
kotlin-fork/compiler/testData/codegen/box/bridges/noBridgeOnMutableCollectionInheritance.kt
T
2015-05-12 19:43:17 +02:00

23 lines
473 B
Kotlin

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()
r += (c : B).foo().iterator().next()
r += (c : A).foo().iterator().next()
return if (r == "CCC") "OK" else "Fail: $r"
}