Files
kotlin-fork/idea/testData/inspectionsLocal/replacePutWithAssignment/hasSet2.kt
T
2020-09-29 23:58:29 +09:00

11 lines
204 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
class Foo : HashMap<String, String>() {
operator fun set(x: String, y: String) {
println("wrong method")
}
}
fun main() {
Foo().<caret>put("x", "y")
}