Files
kotlin-fork/compiler/testData/codegen/box/bridges/diamond.kt
T
Dmitriy Novozhilov 6735cc8937 [FIR] Implement new bound smartcast algorithm
#KT-36055 Fixed
2020-02-12 10:17:45 +03:00

27 lines
516 B
Kotlin
Vendored

interface A<T, U> {
fun foo(t: T, u: U) = "A"
}
interface B<U> : A<String, U>
interface C<T> : A<T, Int>
class Z : B<Int>, C<String> {
override fun foo(t: String, u: Int) = "Z"
}
fun box(): String {
val z = Z()
val c: C<String> = z
val b: B<Int> = z
val a: A<String, Int> = z
return when {
z.foo("", 0) != "Z" -> "Fail #1"
c.foo("", 0) != "Z" -> "Fail #2"
b.foo("", 0) != "Z" -> "Fail #3"
a.foo("", 0) != "Z" -> "Fail #4"
else -> "OK"
}
}