rt_gccstream/gcc/testsuite/gcc.dg/array-9.c

11 lines
145 B
C

/* PR target/27421 */
/* { dg-do compile } */
struct A
{
int i;
void x[1]; /* { dg-error "array of voids" } */
};
void foo(struct A a) {}