Files
c3c/test/test_suite7/bitstruct/bitstruct_simple_err_decl.c3
2025-02-23 13:53:04 +01:00

11 lines
181 B
Plaintext

bitstruct Foo : char
{
bool a : 1;
bool b; // #error: remove ranges from the other member
}
bitstruct Foo2 : char
{
bool a;
bool b : 1; // #error: ranges to all other members
}