OSDN Git Service

tweak
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.jason / bool5.C
1 main ()
2 {
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;
10 }