Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/commonSystem/kt32818.fir.kt
T
2019-12-20 11:17:47 +03:00

8 lines
155 B
Kotlin
Vendored

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