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