Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
codeInsight
/
unwrapAndRemove
/
removeExpression
/
tryInBlock.kt
blob: b866dbe27a8d68cbc0d77358952b8dc4d34333c9 [
file
]
// OPTION: 0
fun foo
(
n
:
Int
):
Int
{
<caret>
try
{
n
/
0
}
catch
(
e
:
Exception
)
{
-
1
}
return
0
}