Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
defaultArguments
/
recursiveDefaultArguments.kt
blob: 7d4eb69d6227729ce9e9c14edec79f96cfeb616d [
file
]
// IGNORE_BACKEND: JS
@Suppress
(
"RECURSION_IN_INLINE"
)
inline
fun test
(
p
:
String
=
test
(
"OK"
)):
String
{
return
p
}
fun box
()
:
String
{
return
test
()
}