Reports an assignment operation that can be replaced by an operator assignment to make your code shorter and probably clearer.

Example:

  x = x + 3;
  x = x / 3;

After the quick fix is applied the result looks like:

  x += 3;
  x /= 3;