Files
c3c/test/test_suite2/bitstruct/invalid_empty_struct_union.c3

7 lines
126 B
C

struct Foo // #error: Zero sized structs are not permitted.
{
}
union Bar // #error: Zero sized unions are not permitted.
{
}