llvm-project/clang/test/Modules/Inputs/templates-top.h

32 lines
498 B
C
Raw Normal View History

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() {}
};