Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
codeInsight
/
unwrapAndRemove
/
unwrapThen
/
thenCompoundInBlock.kt
blob: 9c7f402e5ad7816146f79410944dbae8592b4788 [
file
] [
log
] [
blame
]
// OPTION: 1
fun foo
(
n
:
Int
):
Int
{
<caret>
if
(
n
>
0
)
{
println
(
"> 0"
)
n
+
10
}
else
{
println
(
"<= 0"
)
n
-
10
}
return
n
}