1void f();2 3inline int g() { return 0; }4 5template<typename T>6void h(T t) {}7 8template<>9void h(int t) {}10 11class A {12 public:13 void f();14};15