mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
11 lines
181 B
C
11 lines
181 B
C
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
|
|
} |