Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
changeToMutableCollection
/
set.kt
blob: b339396a22de0d57641eed610e792804e7822b57 [
file
]
// "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
}