ref: 6b681a6a53eabc3fe7bff7c20ea168ce9c9922e4
dir: /tests/execute/0092-fptr.c/
int
zero()
{
return 0;
}
struct S
{
int (*zerofunc)();
} s = { &zero };
struct S *
anon()
{
return &s;
}
typedef struct S * (*fty)();
fty
go()
{
return &anon;
}
int
main()
{
return go()()->zerofunc();
}