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