Files
kotlin/compiler/testData/cfg/declarations/multiDeclaration/multiDeclarationWithError.values

11 lines
215 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
=====================