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