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