PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / pr69974.c
blob101d6212003d7efb2165c2e6ad9a4e3fc7d4f1ff
1 /* PR c/69974 */
2 /* { dg-do compile } */
4 struct S;
5 char foo (struct S *);
6 struct S a; /* { dg-error "storage size of 'a' isn't known" } */
7 int b;
9 void
10 bar ()
12 b &= foo (&a);