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