Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
codeInsight
/
unwrapAndRemove
/
unwrapElse
/
elseCompoundInBlock.kt
blob: 271d5913dbf782869586bcf32f58c3866c616a2b [
file
]
// OPTION: 3
fun foo
(
n
:
Int
):
Int
{
if
(
n
>
0
)
{
println
(
"> 0"
)
n
+
10
}
<caret>
else
{
println
(
"<= 0"
)
n
-
10
}
return
n
}