YouCompleteMe/cpp/llvm/tools/clang/test/ASTMerge/Inputs/class-template1.cpp
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

35 lines
398 B
C++

template<typename T>
struct X0;
template<int I>
struct X1;
template<int I>
struct X2;
template<int I>
struct X3;
template<template<int I> class>
struct X4;
template<template<long> class>
struct X5;
template<typename>
struct X6;
extern X0<int> *x0i;
extern X0<long> *x0l;
extern X0<float> *x0r;
template<>
struct X0<char> {
int member;
};
template<>
struct X0<wchar_t> {
int member;
};