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

19 lines
298 B
Kotlin
Vendored

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()
val a: A<Int> = z
return when {
z.foo(0) != "Z" -> "Fail #1"
a.foo(0) != "Z" -> "Fail #2"
else -> "OK"
}
}