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

7 lines
100 B
Kotlin

// IS_APPLICABLE: false
fun foo() {
var x = 0
val y = 0
val z = 0
<caret>x = y + z
}