Files
c3c/test/test_suite/bitstruct/bitstruct_simple.c3
Christoffer Lerno 62fbf4da47 Add simple bitstruct.
2023-02-18 16:59:52 +01:00

18 lines
254 B
C

bitstruct Foo : char
{
bool a;
int b; // #error: For bitstructs without bit ranges, the types must all be 'bool'
}
bitstruct Foo2 : char
{
bool a0;
bool a1;
bool a2;
bool a3;
bool a4;
bool a5;
bool a6;
bool a7;
bool a8; // #error: overflow
}