add opensuse toolchain support, patch by Ismail Donmez!
[clang/stm8.git] / test / SemaTemplate / instantiate-non-type-template-parameter.cpp
blob027c1e8bb769255b43c8835b41ef5238b6019819
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 // PR5311
4 template<typename T>
5 class StringSwitch {
6 public:
7 template<unsigned N>
8 void Case(const char (&S)[N], const int & Value) {
12 void test_stringswitch(int argc, char *argv[]) {
13 (void)StringSwitch<int>();
16 namespace PR6986 {
17 template<class Class,typename Type,Type Class::*>
18 struct non_const_member_base
22 template<class Class,typename Type,Type Class::*PtrToMember>
23 struct member: non_const_member_base<Class,Type,PtrToMember>
27 struct test_class
29 int int_member;
31 typedef member< test_class,const int,&test_class::int_member > ckey_m;
32 void test()
34 ckey_m m;
38 namespace rdar8980215 {
39 enum E { E1, E2, E3 };
41 template<typename T, E e = E2>
42 struct X0 {
43 X0() {}
44 template<typename U> X0(const X0<U, e> &);
47 template<typename T>
48 struct X1 : X0<T> {
49 X1() {}
50 template<typename U> X1(const X1<U> &x) : X0<T>(x) { }
53 X1<int> x1i;
54 X1<float> x1f(x1i);