Files
kotlin/idea/testData/codeInsight/unwrapAndRemove/unwrapElse/elseCompoundInBlock.kt
2013-06-21 18:18:08 +04:00

13 lines
172 B
Kotlin
Vendored

// OPTION: 3
fun foo(n: Int): Int {
if (n > 0) {
println("> 0")
n + 10
} <caret>else {
println("<= 0")
n - 10
}
return n
}