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