Files
kotlin-fork/idea/testData/inspectionsLocal/suspiciousCollectionReassignment/mutableSet.kt
T

6 lines
97 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
fun test() {
var set = mutableSetOf(1)
set <caret>+= 2
}