Files
kotlin-fork/idea/testData/refactoring/extractFunction/controlFlow/outputValues/singleOutputValue.kt
T
2014-04-17 19:01:20 +04:00

9 lines
124 B
Kotlin

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