Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
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
()
}