Files
kotlin/compiler/testData/codegen/box/bridges/noBridgeOnMutableCollectionInheritance.kt
2016-11-21 18:20:33 +03:00

24 lines
453 B
Kotlin
Vendored

// WITH_RUNTIME
interface A {
fun foo(): Collection<String>
}
interface B : A {
override fun foo(): MutableCollection<String>
}
class C : B {
override fun foo(): MutableList<String> = ArrayList(listOf("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"
}