Files
kotlin-fork/compiler/testData/cfg/tailCalls/finally.values
T

13 lines
240 B
Plaintext

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