aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/expr/bool2.C
blob: 39d93c0af9d920e5d5c7e1cd734b0255e295f215 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-do compile }
// make sure that a typedef for a bool will have the
//  the same results as a bool itself.


typedef bool my_bool;
int main()
{
  my_bool b = false;
  b--; // { dg-error "" }
  return 0;
}