1
The construction
a += Foo();
will be transformed to
a = a + Foo();
Problem
Last updated 5 years ago