blob: 144bfcd0efd8f9c1796ce7b25f743c4ca7ececcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
template<typename T> class Vector;
template<typename T> class List {
public:
void push_back(T);
struct node {};
node *head;
unsigned size;
};
extern List<double> *instantiateListDoubleDeclaration;
namespace A {
class Y {
template <typename T> friend class WhereAmI;
};
}
template <typename T> class A::WhereAmI {
public:
static void func() {}
};
template<typename T> struct Outer {
struct Inner {};
};
template<bool, bool> struct ExplicitInstantiation {
void f() {}
};
|