Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
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"