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