2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930702-1.c
blob8828a701cb99ea02c920ae1745b15da48448cfdc
1 fp (double a, int b)
3 if (a != 33 || b != 11)
4 abort ();
7 main ()
9 int (*f) (double, int) = fp;
11 fp (33, 11);
12 f (33, 11);
13 exit (0);