Files
kotlin-fork/idea/testData/intentions/replaceWithOrdinaryAssignment/plusAssignOperatorFun.kt
T

8 lines
118 B
Kotlin
Vendored

// IS_APPLICABLE: false
operator fun Int.plusAssign(element: Int) {}
fun test() {
val x = 1
x <caret>+= 9
}