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