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

11 lines
199 B
Plaintext

== invoke ==
fun invoke(f: () -> Unit) {
(f)()
}
---------------------
f <v1> NEW()
(f) <v2> NEW(<v1>)
(f)() <v2> COPY
{ (f)() } <v2> COPY
=====================