Files
kotlin-fork/idea/testData/inspectionsLocal/replacePutWithAssignment/putOnThis.kt.after
T

7 lines
107 B
Plaintext
Vendored

// WITH_RUNTIME
class MyMap() : HashMap<String, String>() {
init {
this["foo"] = "bar"
}
}