“AugmentedAssignment” (Solution)

Answer

1

Explanation

The construction

a += Foo();

will be transformed to

a = a + Foo();

Problem

Last updated