Files
kotlin-fork/compiler/testData/cfg/declarations/multiDeclaration/multiDeclarationWithError.instructions
T
2014-09-07 01:04:00 +04:00

27 lines
585 B
Plaintext
Vendored

== foo ==
fun foo(x: Int) {
val (a, b) = x
a
}
---------------------
L0:
1 <START>
v(x: Int)
magic[FAKE_INITIALIZER](x: Int) -> <v0>
w(x|<v0>)
2 mark({ val (a, b) = x a })
r(x) -> <v1>
v(a)
magic[UNRESOLVED_CALL](a|<v1>) -> <v2>
w(a|<v2>)
v(b)
magic[UNRESOLVED_CALL](b|<v1>) -> <v3>
w(b|<v3>)
r(a) -> <v4>
L1:
1 <END> NEXT:[<SINK>]
error:
<ERROR> PREV:[]
sink:
<SINK> PREV:[<ERROR>, <END>]
=====================