FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / bool5.C
blob8f8e37d4eb3f6b30c3eb45b468b4f7e546825a44
1 int main ()
3   bool b = false;
4   int i = b++;
5   if (i != false || b != true)
6     return 1;
7   i = b++;
8   if (i != true || b != true)
9     return 1;