Files
kotlin/idea/testData/refactoring/extractFunction/controlFlow/outputValues/singleOutputValue.kt
2017-03-07 18:10:02 +03:00

13 lines
293 B
Kotlin
Vendored

// PARAM_TYPES: kotlin.Int
// PARAM_TYPES: kotlin.Int
// PARAM_DESCRIPTOR: var b: kotlin.Int defined in foo
// PARAM_DESCRIPTOR: value-parameter a: kotlin.Int defined in foo
// SIBLING:
fun foo(a: Int): Int {
var b: Int = 1
<selection>b += a
println(b)</selection>
return b
}