OSDN Git Service

PR rtl-optimization/27735
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / union-3.c
1 /* PR target/27421 */
2 /* { dg-do compile } */
3
4 union A
5 {
6   int i;
7   void x[1];  /* { dg-error "array of voids" } */
8 };
9
10 void foo(union A a) {}