Files
kotlin-fork/js/js.translator/testData/inline/cases/mutualRecursion.kt
T
2014-10-03 14:23:47 +04:00

13 lines
131 B
Kotlin

package foo
inline fun f() { g() }
inline fun g() { h() }
inline fun h() { f() }
fun box(): String {
f()
return "OK"
}