PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / struct-in-proto-1.c
blob162ba914aa93144bc919d4ca66fdf989169c2586
1 /* { dg-do compile } */
2 /* { dg-options "-w" } */
3 int foo(struct S { int i; } s) {
4 return sizeof(struct S); /* { dg-bogus "incomplete type" "S visible here" } */
6 int bar(void) {
7 return sizeof(struct S); /* { dg-error "incomplete type" "not here" } */