Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
codeInsight
/
unwrapAndRemove
/
removeCatch
/
catch.kt.after
blob: 44f4b94de43d07888dd0ea80e942a071d461123d [
file
] [
log
] [
blame
]
// OPTION: 1
fun foo
(
n
:
Int
):
Int
{
return
try
{
n
/
0
}
<caret>
catch
(
e
:
Exception
)
{
-
2
}
finally
{
}
}