PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / pr63567-2.c
blob5ea2b37c36d5c96b1c5cf728a3007e2ee04caeb3
1 /* PR c/63567 */
2 /* { dg-do compile } */
3 /* { dg-options "-pedantic" } */
5 /* Allow initializing objects with static storage duration with
6 compound literals. 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 } }; /* { dg-warning "initializer element is not constant" } */