ref: 423d7476173c2f680f7f148574910c72aa0aedcf dir: /tests/execute/0090-fptr.c/
struct S { int (*fptr)(); }; int foo() { return 0; } int main() { struct S v; v.fptr = foo; return v.fptr(); }