summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr69796.c
blob: 4b725a50767181d5a902fb00de1e82083f701cef (plain)
1
2
3
4
5
6
7
8
9
10
/* PR c/69796 */
/* { dg-do compile } */

struct S s;	/* { dg-error "storage size of 's' isn't known" } */

void
foo ()
{
  s a;	/* { dg-error "has an incomplete type|expected" } */
}