Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / union-cast-3.c
blob5f9b9f868704845fa22fe24640c74488d3c8dfff
1 /* { dg-do compile } */
2 /* { dg-options "-std=c99 -pedantic-errors" } */
3 /* PR 23155
4 We should get one error messag, one about union cast. */
7 union vx {short f[8]; int v;};
8 int vec;
10 void
11 foo5 (int vec)
13 ((union vx) vec).f[5] = 1; /* { dg-error "forbids casts to union type" } */