clad icon indicating copy to clipboard operation
clad copied to clipboard

Differentiating increment inside the if body fails with TBR on

Open ovdiiuv opened this issue 6 months ago • 0 comments

Differentiating

double f(double val) {
  double res = 0;
  if(val)
    res++;
  return res;
}

with TBR on results in an error.

ovdiiuv avatar Aug 20 '24 14:08 ovdiiuv