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