modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/930702-1.c (about) 1 fp (double a, int b) 2 { 3 if (a != 33 || b != 11) 4 abort (); 5 } 6 7 main () 8 { 9 int (*f) (double, int) = fp; 10 11 fp (33, 11); 12 f (33, 11); 13 exit (0); 14 }