Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
06ab8cc69e303e70578de24dd9a1cf4ebafff93a
/
.
/
compiler
/
testData
/
codegen
/
box
/
controlStructures
/
kt2577.kt
blob: e422d761efd31eb6d8c3042b35188afbd848d59c [
file
]
fun foo
():
Int
{
try
{
}
finally
{
try
{
return
1
}
catch
(
e
:
Throwable
)
{
return
2
}
}
}
fun box
()
=
if
(
foo
()
==
1
)
"OK"
else
"Fail"