Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
codegen
/
box
/
finally
/
kt3706.kt
blob: 923e3aa045a4b124bbef732617214f13ceae6825 [
file
] [
log
] [
blame
]
fun f
():
Int
{
try
{
return
0
}
finally
{
try
{
// culprit ?? remove this try-catch and it works.
}
catch
(
ignore
:
Exception
)
{
}
}
}
fun box
():
String
{
if
(
f
()
!=
0
)
return
"fail1"
return
"OK"
}