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

10 lines
112 B
Kotlin
Vendored

// PROBLEM: none
class A {
fun put(x: Int, y: String) {
}
}
fun foo() {
A().<caret>put(1, "foo")
}