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