Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/MultiDeclaration.kt
T
2013-12-11 19:53:50 +04:00

8 lines
127 B
Kotlin

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