]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/union-cast-3.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / union-cast-3.c
CommitLineData
ca0b7d18
AP
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. */
5
6
7union vx {short f[8]; int v;};
8int vec;
9
10void
11foo5 (int vec)
12{
13 ((union vx) vec).f[5] = 1; /* { dg-error "forbids casts to union type" } */
14}