Files
kotlin-fork/compiler/testData/codegen/box/bridges/substitutionInSuperClass/upperBound.kt
T
2019-11-19 11:00:09 +03:00

24 lines
402 B
Kotlin
Vendored

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