Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.jason / bool5.C
blob1d2f5b60b46fb3e2e035aa646ecd2e733efb87e0
1 // { dg-do run  }
2 int main ()
4   bool b = false;
5   int i = b++;
6   if (i != false || b != true)
7     return 1;
8   i = b++;
9   if (i != true || b != true)
10     return 1;