Add quickfix for ASSIGN_OPERATOR_AMBIGUITY on mutable collection '+=', '-='

KT-26236 Fixed
This commit is contained in:
Toshiaki Kameyama
2018-08-20 22:40:21 +09:00
committed by Natalia Selezneva
parent 725cb88f41
commit b0c3461eab
29 changed files with 403 additions and 0 deletions
@@ -0,0 +1,7 @@
// "Replace with 'plusAssign()' call" "true"
// WITH_RUNTIME
fun test() {
var set = mutableSetOf(1)
set <caret>+= 2
}