249af96d3c
Replaces a statement of the form a = a + b with a statement of the form a += b.
5 lines
52 B
Plaintext
5 lines
52 B
Plaintext
fun foo() {
|
|
var y = 0
|
|
val x = 0
|
|
y += x
|
|
} |