Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/MultiDeclaration.kt
T
Alexander Udalov 950f912154 Retain data flow info after multi-declaration
#KT-2825 In Progress
2012-11-16 17:56:17 +04:00

8 lines
101 B
Kotlin

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