PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / expr / bool4.C
blobdce51ec332e5217d1d6efb807e1a234ed91beca1
1 // { dg-do compile }
2 // make sure that a typedef for a bool will have the
3 //  the same results as a bool itself.
6 typedef volatile bool my_bool;
7 int main()
9   my_bool b = false;
10   b--; // { dg-error "" }
11   return 0;