Files
kotlin-fork/idea/testData/quickfix/changeToMutableCollection/set.kt
T
2020-09-03 18:04:55 +02:00

9 lines
252 B
Kotlin
Vendored

// "Change type to MutableSet" "false"
// DISABLE-ERRORS
// ACTION: Convert assignment to assignment expression
// ACTION: Replace overloaded operator with function call
// WITH_RUNTIME
fun main() {
val set = setOf(1, 2, 3)
set[1]<caret> = 10
}