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

23 lines
381 B
Kotlin
Vendored

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