Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/kt5155WhenBranches.kt
T

12 lines
199 B
Kotlin
Vendored

//KT-5155 Auto-casts do not work with when
fun foo(s: String?) {
when {
s == null -> 1
<!DEBUG_INFO_SMARTCAST!>s<!>.foo() -> 2
else -> 3
}
}
fun String.foo() = true