mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
10 lines
188 B
C
10 lines
188 B
C
|
/* Bug #2017 - cc65 erroneously allows arrays of structs with flexible array members */
|
||
|
|
||
|
struct z {
|
||
|
int a;
|
||
|
int c;
|
||
|
int b[];
|
||
|
};
|
||
|
|
||
|
struct z y[3]; /* Should be an error */
|