Files
kotlin-fork/idea/testData/inspectionsLocal/replacePutWithAssignment/putOnParameter.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

5 lines
88 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo(map: MutableMap<Int, String>) {
map.<caret>put(42, "foo")
}