blob: 101d6212003d7efb2165c2e6ad9a4e3fc7d4f1ff [file] [log] [blame]
/* PR c/69974 */
/* { dg-do compile } */
struct S;
char foo (struct S *);
struct S a; /* { dg-error "storage size of 'a' isn't known" } */
int b;
void
bar ()
{
b &= foo (&a);
}