Files
c3c/test/test_suite7/bitstruct/invalid_empty_struct_union.c3
2025-02-23 13:53:04 +01:00

7 lines
126 B
Plaintext

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