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