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