Files
kotlin-fork/compiler/testData/cfg/declarations/properties/backingFieldAccess.instructions
T
2014-06-03 18:17:05 +04:00

23 lines
354 B
Plaintext

== C ==
class C {
val a: Int
get() = 1
{
$a
}
}
---------------------
L0:
1 <START>
v(val a: Int get() = 1)
2 mark({ $a })
r($a) -> <v0>
L1:
1 <END> NEXT:[<SINK>]
error:
<ERROR> PREV:[]
sink:
<SINK> PREV:[<ERROR>, <END>]
=====================