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.
18 lines
298 B
Kotlin
18 lines
298 B
Kotlin
open class A<T : Number> {
|
|
open fun foo(t: T) = "A"
|
|
}
|
|
|
|
class Z : A<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"
|
|
else -> "OK"
|
|
}
|
|
}
|