Files
kotlin-fork/idea/testData/quickfix/assignOperatorAmbiguity/changeToVal/hashMap.kt
T
2018-10-05 15:58:39 +03:00

7 lines
122 B
Kotlin
Vendored

// "Change 'set' to val" "true"
// WITH_RUNTIME
fun test() {
var set = HashMap<Int, Int>()
set <caret>+= 2 to 2
}