gcc/gcc/testsuite/gcc.dg/pr69796.c

11 lines
202 B
C

/* PR c/69796 */
/* { dg-do compile } */
struct S s; /* { dg-error "storage size of 's' isn't known" } */
void
foo ()
{
s a; /* { dg-error "expression statement has incomplete type|expected" } */
}