Marko Mitic
08/12/2019, 2:46 PMlist
is MutableList<Bucket>
Ruckus
08/12/2019, 2:47 PMlist
is a var
, so it's ambiguous if it should be interpreted as list = list.plus(bucket)
or list.plusAsign(bucket)
If the corresponding binary function (i.e. plus() for plusAssign()) is available too, report error (ambiguity)
Marko Mitic
08/12/2019, 2:56 PM+=
operator