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