Reports cases when the right side of the assignment is a division that shouldn't be truncated to integer.

For example, the following code doesn't change x because of the integer division result:


  int x = 18;
  x *= 3/2;
So, it should be replaced with:

  int x = 18;
  x *= 3.0/2;

New in 2019.2