Files
kotlin-fork/idea/testData/intentions/replaceWithOperatorAssignment/simpleAssign.kt
T
Valentin Kipyatkov 475a361b32 Renamed intention
2015-05-14 01:00:24 +03:00

5 lines
62 B
Kotlin
Vendored

fun foo() {
var y = 0
val x = 0
<caret>y = y + x
}