blob: 385593cc90c68385453875081405d528ca77b3aa [file] [log] [blame]
// PR c++/84978
// { dg-do compile }
struct S {
void (*fn)();
int a[10];
};
S
foo ()
{
S s;
s.fn ();
return s;
}