Files
kotlin-fork/idea/testData/quickfix/changeToMutableCollection/set.kt
T
2019-02-11 10:17:51 +03:00

8 lines
197 B
Kotlin
Vendored

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