9 lines
150 B
Kotlin
Vendored
9 lines
150 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !DIAGNOSTICS: -UNUSED_VARIABLE
|
|
|
|
fun <T : Any> nullable(): T? = null
|
|
|
|
fun test() {
|
|
val value = nullable<Int>() ?: nullable()
|
|
}
|