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

7 lines
141 B
Kotlin

fun foo(x: Number) {
when (x as Int) {
else -> <!DEBUG_INFO_SMARTCAST!>x<!> : Int
}
<!DEBUG_INFO_SMARTCAST!>x<!> : Int
}