Files
kotlin-fork/compiler/testData/codegen/box/defaultArguments/recursiveDefaultArguments.kt
T

9 lines
168 B
Kotlin
Vendored

// IGNORE_BACKEND: JS, JS_IR
@Suppress("RECURSION_IN_INLINE")
inline fun test(p: String = test("OK")): String {
return p
}
fun box() : String {
return test()
}