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

5 lines
78 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo(map: MutableMap<Int, String>) {
map[42] = "foo"
}