Files
kotlin/compiler/testData/cfg/declarations/multiDeclaration/multiDeclarationWithError.instructions
2014-03-07 21:08:16 +04:00

25 lines
386 B
Plaintext

== foo ==
fun foo(x: Int) {
val (a, b) = x
a
}
---------------------
L0:
1 <START>
v(x: Int)
w(x)
2 mark({ val (a, b) = x a })
r(x)
v(a)
w(a)
v(b)
w(b)
r(a)
L1:
1 <END> NEXT:[<SINK>]
error:
<ERROR> PREV:[]
sink:
<SINK> PREV:[<ERROR>, <END>]
=====================