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

14 lines
237 B
Plaintext

== test ==
tailRecursive fun test() : Int {
try {
// do nothing
} finally {
test()
}
}
---------------------
test <v0> NEW()
test() <v0> COPY
{ test() } <v0> COPY
=====================