Files
kotlin-fork/compiler/testData/codegen/box/defaultArguments/recursiveDefaultArguments.kt
T
2023-12-26 10:18:19 +00:00

11 lines
194 B
Kotlin
Vendored

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