f()1 inline int f ()
2 {
3   static int i;
4   return ++i;
5 }
6 
g()7 int g ()
8 {
9   return f();
10 }
11