eb3ddf50bf
This takes an expression of the form a += b and converts it to an expression form a = a + b.
5 lines
68 B
Kotlin
5 lines
68 B
Kotlin
// IS_APPLICABLE: false
|
|
fun foo() {
|
|
var x = 0
|
|
<caret>x + 1
|
|
} |