ref: db6a88b11ded5bd3de7c6898e6ad08c6be74a45d 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(); }