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