URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [noncompile/] [incomplete-3.c] - Rev 816
Compare with Previous | Blame | View Log
/* 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 "incomplete type" } */ }