db2fb86c8e
Testing: total kotlin test controls no stubs in FIR in non-stub-mode #KT-29002 Fixed
7 lines
155 B
Kotlin
Vendored
7 lines
155 B
Kotlin
Vendored
fun <T> nullableValue(): T? = null
|
|
|
|
fun test() {
|
|
val n = nullableValue<Int>()
|
|
val x = nullableValue<Double>()
|
|
val s = nullableValue<String>()
|
|
} |