Files
c3c/test/test_suite/bitstruct/invalid_empty_struct_union.c3
2021-12-14 19:00:33 +01:00

7 lines
126 B
C

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