Files
kotlin-fork/idea/testData/refactoring/extractFunction/basic/fragmentWithComment.kt
T

7 lines
129 B
Kotlin

// NEXT_SIBLING:
fun foo(a: Int): Int {
<selection>// test
println(a)
if (a > 0) return a</selection>
return -a
}