1 2 3 4 5 6 7 8 9 10 11 12
extern void u (int, int); extern void v (float, float); void f (__complex__ int x) { u (0, x); } void g (__complex__ float x) { v (0, x); }