mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-28 15:58:57 -04:00

Also, a number of style and bug fixes was done: * ASTImporterTest: added sanity check for source node * ExternalASTMerger: better lookup for template specializations * ASTImporter: don't add templated declarations into DeclContext * ASTImporter: introduce a helper, ImportTemplateArgumentListInfo getting SourceLocations * ASTImporter: proper set ParmVarDecls for imported FunctionProtoTypeLoc Differential Revision: https://reviews.llvm.org/D42301 llvm-svn: 323519
38 lines
501 B
C++
38 lines
501 B
C++
template<typename T>
|
|
struct X0 {
|
|
T getValue(T arg) { return arg; }
|
|
};
|
|
|
|
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;
|
|
char getValue(char ch) { return static_cast<char>(member); }
|
|
};
|
|
|
|
template<>
|
|
struct X0<wchar_t> {
|
|
int member;
|
|
};
|