14 lines
193 B
C++
14 lines
193 B
C++
#include "template_class_test.h"
|
|
|
|
template <typename T>
|
|
void A<T>::g() {}
|
|
|
|
template <typename T>
|
|
template <typename U>
|
|
void A<T>::k() {}
|
|
|
|
template <typename T>
|
|
int A<T>::c = 2;
|
|
|
|
void B::f() {}
|