Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
417088e15084daef5c72bc17ea66d3cf3c026c33
/
.
/
compiler
/
testData
/
codegen
/
box
/
defaultArguments
/
suspendLambdaInTailrecDefault.kt
blob: b7867089995bed6ad53b0c5d5ec6dd12a2550998 [
file
]
// ISSUE: KT-82788
// WITH_STDLIB
tailrec fun test
(
n
:
Int
,
block
:
suspend
()
->
Unit
=
{})
:
String
{
if
(
n
==
0
)
return
"OK"
return
test
(
n
-
1
)
}
fun box
():
String
{
return
test
(
2
)
}