Files
kotlin-fork/compiler/testData/cfg/expressions/unresolvedCall.values
T
2014-06-03 18:17:07 +04:00

12 lines
239 B
Plaintext

== test ==
fun test(a: Any) {
a.foo()
}
---------------------
a <v1> NEW()
foo <v2> NEW(<v1>)
foo() <v2> COPY
a.foo() <v2> COPY
{ a.foo() } <v2> COPY
=====================