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

8 lines
128 B
Kotlin

fun Int.component1() = "a"
fun foo(a: Number) {
val (x) = a as Int
<!DEBUG_INFO_SMARTCAST!>a<!> : Int
x : String
}