Files
kotlin-fork/compiler/testData/codegen/box/defaultArguments/recursiveDefaultArguments.kt
T
2021-10-02 06:14:35 +00:00

9 lines
161 B
Kotlin
Vendored

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