Files
kotlin-fork/idea/testData/quickfix/assignOperatorAmbiguity/replaceWithAssignCall/hashSet.kt
T
2018-10-05 15:58:39 +03:00

7 lines
126 B
Kotlin
Vendored

// "Replace with 'minusAssign()' call" "true"
// WITH_RUNTIME
fun test() {
var set = HashSet<Int>()
set <caret>-= 2
}