Files
kotlin-fork/idea/testData/refactoring/extractFunction/controlFlow/outputValues/singleOutputValue.kt
T

9 lines
119 B
Kotlin

// SIBLING:
fun foo(a: Int): Int {
var b: Int = 1
<selection>b += a
println(b)</selection>
return b
}