]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr63567-1.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr63567-1.c
CommitLineData
7278465e
MP
1/* PR c/63567 */
2/* { dg-do compile } */
3/* { dg-options "" } */
4
5/* Allow initializing objects with static storage duration with
6 compound literals even. This is being used in Linux kernel. */
7
8struct T { int i; };
9struct S { struct T t; };
10static struct S s = (struct S) { .t = { 42 } };