1 void f1 (double);
2 void f2 (int);
3 
4 void
foo(int type,double xx)5 foo (int type, double xx)
6 {
7   if (type)
8     f1 (xx);
9   else
10     f2 (type);
11 }
12 
13 void
bar(int type)14 bar (int type)
15 {
16   foo (type, 1.0);
17 }
18