Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/kt5155WhenBranches.kt
T
2014-10-01 18:52:52 +04:00

11 lines
270 B
Kotlin
Vendored

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