Files
kotlin-fork/idea/testData/intentions/swapBinaryExpression/plusAssign.kt
T
2014-03-25 15:55:53 +04:00

6 lines
102 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun new(x: Int, y: Int): Int {
var c = 5
c += <caret>10
return 1
}