Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/commonSystem/kt32818.kt
T
2021-05-25 13:28:29 +03:00

9 lines
150 B
Kotlin
Vendored

// FIR_IDENTICAL
// !DIAGNOSTICS: -UNUSED_VARIABLE
fun <T : Any> nullable(): T? = null
fun test() {
val value = nullable<Int>() ?: nullable()
}