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

23 lines
439 B
Plaintext

== test ==
fun test(a: Any) {
a.foo
}
---------------------
L0:
1 <START>
v(a: Any)
magic(a: Any) -> <v0>
w(a|<v0>)
2 mark({ a.foo })
mark(a.foo)
error(foo, No resolved call)
r(a) -> <v1>
magic(foo|<v1>) -> <v2>
L1:
1 <END> NEXT:[<SINK>]
error:
<ERROR> PREV:[]
sink:
<SINK> PREV:[<ERROR>, <END>]
=====================