PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr60784.c
blob82b512f7c2ecf8acb68d73f0b81a8059416e16b4
1 /* PR c/60784 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wextra -std=c99" } */
5 struct A { int i, j; };
6 struct B { struct A a; } b1 = { .a.i = 1, .a.j = 1 };
7 struct B b2 = { .a.i = 1 };
9 struct C { struct { int a, b; }; } c1 = { .a = 4, .b = 2 };
10 struct C c2 = { .a = 4, .b = 2 };
12 struct D { struct A a; };
13 struct E { struct D d; };
14 struct F { struct E e; } f1 = { .e.d.a.i = 8 };
15 struct F f2 = { .e.d.a.i = 8, .e.d.a.j = 3 };
17 struct G {
18 struct {
19 struct {
20 struct {
21 int a, b, c, d, e, f;
25 } g = { .b = 2 };