PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / init-bad-7.c
blobde5e570978ccf693dad75f09d2a6d50bb4f784a2
1 /* PR c/37724 */
2 /* { dg-do compile } */
3 /* { dg-options "-std=gnu99 -pedantic" } */
5 struct f
7 int *a;
8 };
10 char b[10];
11 struct f g = {b}; /* { dg-warning "initialization of 'int \\*' from incompatible pointer type|near initialization for" } */