cb9c18b7ad
#KT-2498 Fixed generateBridgeIfNeeded() now works as follows: for a given method, find which declared methods does this method override via breadth-first search. For each such declared method, generate a bridge if and only if its signature is different. Keep different methods' signatures in a set to avoid duplicated bridge signatures.
21 lines
389 B
Kotlin
21 lines
389 B
Kotlin
abstract class A<T> {
|
|
abstract fun foo(t: T): String
|
|
}
|
|
|
|
abstract class B : A<String>()
|
|
|
|
class Z : B() {
|
|
override fun foo(t: String) = "Z"
|
|
}
|
|
|
|
|
|
fun box(): String {
|
|
val z = Z()
|
|
return when {
|
|
z.foo("") != "Z" -> "Fail #1"
|
|
(z : B).foo("") != "Z" -> "Fail #2"
|
|
(z : A<String>).foo("") != "Z" -> "Fail #3"
|
|
else -> "OK"
|
|
}
|
|
}
|