Files
kotlin-fork/idea/testData/inspectionsLocal/replacePutWithAssignment/afterElvis.kt
T
2018-08-03 13:21:50 +03:00

6 lines
112 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun test(i: Int?, m: MutableMap<String, Int>) {
i ?: m.<caret>put("", 1)
}