d4ef85f6c2
Relates to #KT-22420
9 lines
252 B
Kotlin
Vendored
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
|
|
} |