Files
kotlin-fork/compiler/testData/codegen/box/safeCall/kt52743.kt
T
2022-06-22 09:11:24 +00:00

9 lines
164 B
Kotlin
Vendored

fun <T: Any?> nullableFun(): T {
return null as T
}
fun box(): String {
val t = nullableFun<String>()
return if (t?.length == null) "OK" else "Fail"
}