• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "template_class_test.h"
2 
3 template <typename T>
g()4 void A<T>::g() {}
5 
6 template <typename T>
7 template <typename U>
k()8 void A<T>::k() {}
9 
10 template <typename T>
11 int A<T>::c = 2;
12 
f()13 void B::f() {}
14