Files
kotlin-fork/idea/testData/refactoring/introduceParameter/assignment.kt
T

6 lines
87 B
Kotlin
Vendored

fun foo(): Int {
var x = 1
<selection>x = x + 1</selection>
return 1 + x
}