Prefix increment/decrement operator seems to be working fine but postfix increment/decrement operator throws error.
Code to reproduce
int i =0;
while(i < 5) {
i++;
}
This behaviour is not limited to any type. Was able to reproduce this for pointers was well in similar fashion