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

8 lines
163 B
Kotlin
Vendored

// PROBLEM: none
// RUNTIME_WITH_FULL_JDK
class Test : java.util.LinkedHashMap<String, String>() {
fun test() {
super.<caret>put("foo", "bar")
}
}