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

9 lines
140 B
Kotlin

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