1 #pragma interface "interface1.h"
2 
3 struct Test {
4   void f();
5 };
6 
f()7 inline void Test::f() {
8 }
9