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