aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/bool5.C
blob: 79d848c0b194bf8a7b475af7fa7566f85627606e (plain)
1
2
3
4
5
6
7
8
9
10
main ()
{
  bool b = false;
  int i = b++;
  if (i != false || b != true)
    return 1;
  i = b++;
  if (i != true || b != true)
    return 1;
}