1 void f1(int &); 2 static void f2() {} 3 inline void foo() { 4 static int i; 5 f1(i); 6 f2(); 7 } 8 inline void foo2() { 9 } 10 void foo_ext() {} 11