OSDN Git Service

* gcc.dg/vect/vect-105.c: Prevent compiler from hoisting abort
[pf3gnuchains/gcc-fork.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 }