blob: 54b98f6f0b3be7da1bff9ac4b97e91d5c8ef82c0 [file] [log] [blame]
/* { dg-do compile } */
double d=0;
struct A {} a; /* { dg-warning "(has no members)" } */
void foo(struct A x)
{
d=0;
}
void bar()
{
if (d) foo(a);
}