OSDN Git Service

2006-06-19 Anatoly Sokolov <aesok@post.ru>
[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) {}