PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr63567-1.c
blob97da171563e22c323607d24a66d29926108057ff
1 /* PR c/63567 */
2 /* { dg-do compile } */
3 /* { dg-options "" } */
5 /* Allow initializing objects with static storage duration with
6 compound literals even. This is being used in Linux kernel. */
8 struct T { int i; };
9 struct S { struct T t; };
10 static struct S s = (struct S) { .t = { 42 } };