Files
kotlin-fork/idea/testData/inspectionsLocal/replaceWithOperatorAssignment/validAddition.kt.after
T

5 lines
64 B
Plaintext
Vendored

// FIX: Replace with '+='
fun foo() {
var x = 0
x += 1
}