Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
defaultArguments
/
recursiveDefaultArguments.kt
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
()
}