Files
2015-09-04 17:23:26 +03:00

8 lines
98 B
Kotlin
Vendored

tailrec fun test() : Int {
try {
// do nothing
} finally {
test()
}
}