Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.dg / noncompile / incomplete-3.c
blob735ef465b38a5265fa51a5c0bcd270a59ec903b5
1 /* Both occurrences of "c" should get diagnostics. PR 12391. */
2 typedef struct { int a; } b_t;
4 int foo (void)
6 b_t d;
7 struct b_t *c = &d; /* { dg-warning "incompatible pointer type" } */
8 c->a; /* { dg-error "incomplete type" } */