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