Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
codegen
/
box
/
controlStructures
/
tryCatchFinallyChain.kt
blob: b0ee1f314dc1073c7518a08ab0084b5c8cf99f74 [
file
] [
log
] [
blame
]
fun box
()
:
String
{
try
{
}
finally
{
try
{
try
{
}
finally
{
try
{
}
finally
{
}
}
}
catch
(
e
:
Exception
)
{
try
{
}
catch
(
f
:
Exception
)
{
}
finally
{
}
}
return
"OK"
}
}