Files
kotlin-fork/compiler/testData/codegen/box/bridges/kt1959.kt
T
Steven Schäfer aea5e3ffbc JVM IR: Remove type substitutions from ExpressionCodegen
Instead, determine whether the return type of a call is Nothing, by
looking at the type of the call expression.
2020-01-22 15:51:11 +01:00

12 lines
173 B
Kotlin
Vendored

open class A<T> {
open fun f(args : Array<T>) {}
}
class B(): A<String>() {
override fun f(args : Array<String>) {}
}
fun box(): String {
B()
return "OK"
}