blob: dce51ec332e5217d1d6efb807e1a234ed91beca1 [file] [log] [blame]
// { dg-do compile }
// make sure that a typedef for a bool will have the
// the same results as a bool itself.
typedef volatile bool my_bool;
int main()
{
my_bool b = false;
b--; // { dg-error "" }
return 0;
}