cake icon indicating copy to clipboard operation
cake copied to clipboard

Operator ++, -- not changing flow state

Open thradams opened this issue 5 months ago • 0 comments

#pragma safety enable

int main()
{
     for (int i = 0; i < 10; i++)
     {
       if (i != 0) //warning i always 0
       {
       }
     }
}

thradams avatar Sep 09 '24 11:09 thradams