Files
kotlin-fork/compiler/testData/diagnostics/tests/InferNullabilityInThenBlock.kt
T
2013-12-11 19:53:50 +04:00

10 lines
151 B
Kotlin

fun ff(<!UNUSED_PARAMETER!>a<!>: String) = 1
fun gg() {
val a: String? = ""
if (a != null) {
ff(<!DEBUG_INFO_AUTOCAST!>a<!>)
}
}