Files
kotlin-fork/idea/testData/inspectionsLocal/replacePutWithAssignment/putOnVar.kt
T
Mikhail Glukhikh a90e3c2e45 Add "replace map.put with assignment" to J2K
Related to KT-21502
2017-12-05 18:18:25 +03:00

6 lines
100 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo() {
var map = mutableMapOf(42 to "foo")
map.<caret>put(60, "bar")
}