Files
kotlin/compiler/testData/diagnostics/tests/InferNullabilityInThenBlock.kt
2014-10-01 18:52:52 +04:00

10 lines
152 B
Kotlin
Vendored

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