struct A {
typedef int type;
static void my_f();
template <typename T>
static T my_templf(T x) { return x; }
};
void test(const int (&a6)[17]) {
int x = templ_f<int, 5>(3);
S<char, float>::templ();
S<int, char>::partial();
S<int, float>::explicit_special();
Dep<A>::Ty ty;
Dep<A> a;
a.f();
S3<int> s3;
s3.m();
TS5 ts(0);
S6<const int[17]>::t2 b6 = a6;
}
template struct S4<int>;
S7<int[5]> s7_5;
namespace ZeroLengthExplicitTemplateArgs {
template void f<X>(X*);
}
namespace Test1 {
struct StringHasher {
template<typename T, char Converter(T)> static inline unsigned createHash(const T*, unsigned) {
return 0;
}
};
struct CaseFoldingHash {
static inline char foldCase(char) {
return 0;
}
static unsigned hash(const char* data, unsigned length) {
return StringHasher::createHash<char, foldCase>(data, length);
}
};
}
template< typename D >
Foo< D >& Foo< D >::operator=( const Foo& other )
{
return *this;
}
namespace TestNestedExpansion {
struct Int {
Int(int);
friend Int operator+(Int, Int);
};
Int &g(Int, int, double);
Int &test = NestedExpansion<char, char, char>().f(0, 1, 2, Int(3), 4, 5.0);
}
namespace rdar13135282 {
void test() {
__mt_alloc<> mt = __mt_alloc<>();
}
}
void CallDependentSpecializedFunc(DependentSpecializedFuncClass<int> &x) {
DependentSpecializedFunc(x);
}
namespace cyclic_module_load {
extern std::valarray<int> x;
std::valarray<int> y(x);
}
#ifndef NO_ERRORS
template int local_extern::f<int[]>(); #endif
template int local_extern::g<int[]>();
namespace MemberSpecializationLocation {
#ifndef NO_ERRORS
template<> float A<int>::n; #endif
int k = A<int>::n;
}
namespace PR34728 {
int test() {
int z1 = func1(2.718);
int z2 = func2(3.142);
int tmp3 = 30;
Container<int> c = func3(tmp3);
int z3 = c.item;
return z1 + z2 + z3;
}
}
namespace ClassScopeExplicitSpecializations {
template int A<3>::f<0>() const; template int A<3>::f<1>() const;
template int A<4>::f<0>() const; template int A<4>::f<1>() const;
static_assert(A<0>().f<0>() == 4, "");
static_assert(A<0>().f<1>() == 5, "");
static_assert(A<0>().f<2>() == 3, "");
static_assert(A<1>().f<0>() == 2, "");
static_assert(A<1>().f<1>() == 1, "");
static_assert(A<1>().f<2>() == 1, "");
static_assert(A<2>().f<0>() == 2, "");
static_assert(A<2>().f<1>() == 1, "");
static_assert(A<3>().f<0>() == 2, "");
static_assert(A<3>().f<1>() == 1, "");
static_assert(A<4>().f<0>() == 2, "");
static_assert(A<4>().f<1>() == 1, "");
}
namespace DependentMemberExpr {
#ifndef NO_ERRORS
static_assert(A<int>().f() == 1); #endif
}
namespace DependentTemplateName {
struct HasMember {
template <class T> struct Member;
};
void test() {
getWithIdentifier<HasMember>();
}
}
namespace ClassTemplateCycle {
extern T t;
int k = M;
}