aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/i++.c
blob: 01d9ca95a8a26f996c64c5c6ba296cd19ef19471 (plain)
1
2
3
4
5
6
7
int main ()
{
  int i = 2;

  i = i++;
  printf ("%d\n",i);
}