Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
compiler
/
testData
/
codegen
/
box
/
defaultArguments
/
kt36853a.kt
blob: 5751487976c8416909bca2d8099435f9570d6093 [
file
]
tailrec fun tailrecDefault
(
fake
:
Int
,
fn
:
()
->
String
=
{
"OK"
}):
String
{
return
if
(
fake
==
0
)
tailrecDefault
(
1
)
else
fn
()
}
fun box
():
String
=
tailrecDefault
(
0
)