blob: 500b8c7e76c46ecc7e03089330e7ae703a980c89 [file]
// FILE: lib.kt
@Suppress("RECURSION_IN_INLINE")
inline fun test(p: String = test("OK")): String {
return p
}
// FILE: main.kt
fun box() : String {
return test()
}