For example, the following code doesn't change x because of the integer division result:
int x = 18; x *= 3/2;
int x = 18; x *= 3.0/2;
New in 2019.2