Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
compiler
/
testData
/
codegen
/
box
/
functions
/
kt48058.kt
blob: bc9cfa3881a99a1fc8473156757a9cd93f781307 [
file
]
fun doCall
(
block
:
Any
):
Int
{
(
block
as
()
->
Unit
)()
return
1
}
fun test1
()
=
doCall
{
try
{}
finally
{
{}
}
}
fun box
():
String
{
test1
()
return
"OK"
}