Files
c3c/test/test_suite/struct/zero_member.c3
Christoffer Lerno 8b49e6c14d Rename def to alias.
2025-03-13 11:22:27 +01:00

7 lines
95 B
Plaintext

alias Foo = int[0]; // #error: An array may not have zero
struct Bar
{
Foo x;
int b;
}