Files
kotlin-fork/idea/testData/intentions/convertVariableAssignmentToExpression/simple.kt
T
2020-09-03 15:11:36 +02:00

6 lines
58 B
Kotlin
Vendored

// WITH_RUNTIME
var x = 5
fun foo() {
x <caret>= 10
}