Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr69974.c
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
);
}