Files
kotlin-fork/compiler/testData/diagnostics/tests/operatorsOverloading/plusAssignOnVarAndCollections.kt
T
Ivan Kylchik c7435ba760 Replace all occurrences of WITH_RUNTIME with WITH_STDLIB
We are going to deprecate `WITH_RUNTIME` directive. The main reason
behind this change is that `WITH_STDLIB` directive better describes
its meaning, specifically it will add kotlin stdlib to test's classpath.
2021-11-17 15:26:38 +03:00

32 lines
415 B
Kotlin
Vendored

// FIR_IDENTICAL
// WITH_STDLIB
fun test1() {
var list = ArrayList<Int>()
list -= 2
}
fun test2() {
var set = HashMap<Int, Int>()
set += 2 to 2
}
fun test3() {
var set = HashSet<Int>()
set -= 2
}
fun test4() {
var list = mutableListOf(1)
list += 2
}
fun test5() {
var map = mutableMapOf(1 to 1)
map += 2 to 2
}
fun test6() {
var set = mutableSetOf(1)
set += 2
}