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