PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr24293.c
blob5bf7ad17ef456bda157f26e73bac2b4df5656395
1 /* { dg-do compile } */
2 /* { dg-options "-fsyntax-only" } */
4 static struct foo x; /* { dg-error "storage size of 'x' isn't known" } */
5 static union bar y; /* { dg-error "storage size of 'y' isn't known" } */
7 typedef struct P p;
8 static p p_obj; /* { dg-error "storage size of 'p_obj' isn't known" } */
10 static enum e e_var; /* { dg-error "storage size of 'e_var' isn't known" } */
12 extern struct undefined_object object;