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

23 lines
427 B
Plaintext

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