1 /* PR c/37724 */
2 /* { dg-do compile } */
3 /* { dg-options "-std=gnu99 -pedantic" } */
4 
5 struct f
6 {
7   int *a;
8 };
9 
10 char b[10];
11 struct f g = {b}; /* { dg-warning "initialization from incompatible pointer type|near initialization for" } */
12