ref: 3316919fa6b703a5514a3817b8f22cde27ccf569 dir: /tests/cc/execute/0090-fptr.c/
struct S { int (*fptr)(); }; int foo() { return 0; } int main() { struct S v; v.fptr = foo; return v.fptr(); }