Files
kotlin-fork/compiler/testData/cfg/declarations/properties/backingFieldAccess.instructions
T
2014-03-07 21:08:16 +04:00

23 lines
346 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)
L1:
1 <END> NEXT:[<SINK>]
error:
<ERROR> PREV:[]
sink:
<SINK> PREV:[<ERROR>, <END>]
=====================