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