Files
kotlin-fork/compiler/testData/codegen/box/defaultArguments/recursiveDefaultArguments.kt
T
2020-11-09 16:04:43 +03:00

11 lines
231 B
Kotlin
Vendored

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