]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/union-cast-4.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / union-cast-4.c
1 /* PR c/35748 */
2
3 union U { void x[1]; }; /* { dg-error "array of voids" } */
4
5 void foo()
6 {
7 (union U)0; /* { dg-error "type not present" } */
8 }