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

13 lines
172 B
Kotlin
Vendored

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