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

7 lines
100 B
Kotlin
Vendored

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