mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
24 lines
453 B
Kotlin
Vendored
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"
|
|
}
|