Files
kotlin-fork/idea/testData/intentions/replaceWithOperatorAssign/invalidSubtraction.kt
T
Pradyoth Kukkapalli 249af96d3c New Intention Action: Replace with operator assign
Replaces a statement of the form a = a + b with a statement of the form
a += b.
2014-04-07 09:43:01 -04:00

5 lines
72 B
Kotlin

// IS_APPLICABLE: false
fun foo() {
var x = 0
<caret>x = 1 - x
}