7 lines
129 B
Kotlin
7 lines
129 B
Kotlin
// NEXT_SIBLING:
|
|
fun foo(a: Int): Int {
|
|
<selection>// test
|
|
println(a)
|
|
if (a > 0) return a</selection>
|
|
return -a
|
|
} |