249af96d3c
Replaces a statement of the form a = a + b with a statement of the form a += b.
7 lines
100 B
Kotlin
7 lines
100 B
Kotlin
// IS_APPLICABLE: false
|
|
fun foo() {
|
|
var x = 0
|
|
val y = 0
|
|
val z = 0
|
|
<caret>x = y + z
|
|
} |