Files
kotlin-fork/idea/testData/intentions/replaceWithOrdinaryAssignment/complexRightExpression.kt
T
Valentin Kipyatkov 05b6181d20 Renamed intention
2015-05-14 01:00:24 +03:00

6 lines
77 B
Kotlin
Vendored

fun foo() {
var x = 0
val a = 1
val b = 1
x <caret>+= a / b
}