blob: fd6a38c395c9ff6f77ce2383e123f6bfed573e4e [file] [log] [blame]
int main ()
{
int i = 2;
i = i++;
__builtin_printf ("%d\n",i);
}