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