Files
kotlin-fork/compiler/testData/diagnostics/tests/nullabilityAndSmartCasts/dataFlowInfoAfterExclExcl.fir.kt
T

8 lines
111 B
Kotlin
Vendored

fun foo(d: Any?) {
if (d is String?) {
d!!
doString(d)
}
}
fun doString(s: String) = s