Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
compiler
/
testData
/
cfg
/
tailCalls
/
tryCatchFinally.kt
blob: e6e41d3578412b09249f978e2701fb8b5d233dc9 [
file
] [
log
] [
blame
]
fun test
()
:
Unit
{
try
{
test
()
}
catch
(
any
:
Exception
)
{
test
()
}
finally
{
test
()
}
}