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

11 lines
145 B
C

bitstruct Foo : char
{
bool a : 1;
bool b; // #error: Expected a ':'
}
bitstruct Foo2 : char
{
bool a;
bool b : 1; // #error: Expected ';'
}