2018-05-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / union-3.c
blob3e89b755afad5a9387ddfe4165d6a63a354842e4
1 /* PR target/27421 */
2 /* { dg-do compile } */
4 union A
6 int i;
7 void x[1]; /* { dg-error "array of voids" } */
8 };
10 void foo(union A a) {}