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