OSDN Git Service

* class.c (type_has_virtual_destructor): New.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / expr / bool4.C
1 // { dg-do compile }
2 // make sure that a typedef for a bool will have the
3 //  the same results as a bool itself.
4
5
6 typedef volatile bool my_bool;
7 int main()
8 {
9   my_bool b = false;
10   b--; // { dg-error "" }
11   return 0;
12 }
13