blob: 662c495d8ce47b601ad1d8551431d560831a57f2 [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 bool my_bool;
int main()
{
my_bool b = false;
b--; // { dg-error "3:use of an operand of type .bool. in .operator\\-\\-. is forbidden" }
return 0;
}