1 /* { dg-do compile } */
2 /* { dg-require-stack-check "specific" } */
3 /* { dg-additional-options "-fstack-check -w" } */
4 
5 int a;
6 struct b {
7     char c;
8     void *d;
9 };
e()10 struct b e() {
11     struct b f[] = {{}, "", f, a};
12 }
13