aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/noncompile/incomplete-3.c
blob: 0618b4d81705a75f73ac1b125cce53b102c87502 (plain)
1
2
3
4
5
6
7
8
9
/* Both occurrences of "c" should get diagnostics.  PR 12391.  */
typedef struct { int a; } b_t;

int foo (void)
{
  b_t d;
  struct b_t *c = &d;	/* { dg-warning "incompatible pointer type" } */
  c->a;			/* { dg-error "invalid use of undefined type" } */
}