blob: c17427a764366114c4f7883ea2bfeee8e5e38f67 [file] [log] [blame]
// Special g++ Options: -O3
typedef int (*fp)();
struct S
{
fp f;
};
static int f()
{
return 0;
}
static const S s = { &f };
int main()
{
return (*s.f)();
}