PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / union-cast-1.c
blob1d7f4d549d8e3ca843ba7e7fa117f25be9ad659d
1 /* { dg-do compile } */
2 /* { dg-options "-std=gnu89" } */
3 /* A combine of two extensions to C89 are used here.
4 First casts to unions is used.
5 Second subscripting non lvalue arrays, this is in C99. */
7 union vx {short f[8]; int v;};
8 int vec;
10 void
11 foo5 (int vec)
13 ((union vx) vec).f[5] = 1;