mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
25 lines
495 B
Kotlin
Vendored
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"
|
|
}
|