mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
17 lines
193 B
Plaintext
17 lines
193 B
Plaintext
struct Abc
|
|
{
|
|
Foo[4] x; // #error: Arrays of structs with flexible array members
|
|
}
|
|
|
|
struct Foo
|
|
{
|
|
int a;
|
|
int[*] x;
|
|
}
|
|
|
|
struct Foo2
|
|
{
|
|
int a;
|
|
int[*] x, y; // #error: must be the last element
|
|
}
|