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

14 lines
300 B
Kotlin

fun foo(x: Int, list: List<Int>?) {
when (x) {
in list!! -> <!DEBUG_INFO_SMARTCAST!>list<!> : List<Int>
else -> {}
}
}
fun whenWithoutSubject(x: Int, list: List<Int>?) {
when {
x in list!! -> <!DEBUG_INFO_SMARTCAST!>list<!> : List<Int>
else -> {}
}
}