Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
codeInsight
/
unwrapAndRemove
/
unwrapFinally
/
finallyCompoundInBlock.kt
blob: eafab6dcd4b22cf8cd3042f87304c199543cc60c [
file
] [
log
] [
blame
]
// OPTION: 0
fun foo
(
n
:
Int
):
Int
{
try
{
n
/
0
}
catch
(
e
:
ArithmeticException
)
{
-
1
}
catch
(
e
:
Exception
)
{
-
2
}
<caret>
finally
{
val s
=
"finally"
println
(
s
)
}
return
0
}