Files
kotlin-fork/compiler/testData/cfg/declarations/multiDeclaration/multiDeclarationWithError.values
T
2014-06-03 18:17:07 +04:00

11 lines
206 B
Plaintext

== foo ==
fun foo(x: Int) {
val (a, b) = x
a
}
---------------------
x <v1> NEW()
a <v4> NEW()
{ val (a, b) = x a } <v4> COPY
=====================