Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/kt5155WhenBranches.kt
T
Svetlana Isakova abfc8ed7e8 KT-5155 Auto-casts do not work with when
#KT-5155 Fixed
2014-06-21 12:26:33 +04:00

15 lines
201 B
Kotlin

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