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

7 lines
117 B
Kotlin
Vendored

// WITH_RUNTIME
class MyMap() : HashMap<String, String>() {
init {
this.<caret>put("foo", "bar")
}
}