opnsense-src/test/SemaTemplate/injected-class-name.cpp

45 lines
1 KiB
C++
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -fsyntax-only -verify %s
2009-06-02 13:58:47 -04:00
template<typename T>
struct X {
X<T*> *ptr;
};
X<int> x;
template<>
struct X<int***> {
typedef X<int***> *ptr;
};
2010-01-15 10:39:40 -05:00
X<float>::X<int> xi = x; // expected-error{{qualified reference to 'X' is a constructor name rather than a template name wherever a constructor can be declared}}
2009-06-02 13:58:47 -04:00
// [temp.local]p1:
2009-10-14 14:03:49 -04:00
// FIXME: test template template parameters
2009-06-02 13:58:47 -04:00
template<typename T, typename U>
struct X0 {
typedef T type;
typedef U U_type;
typedef U_type U_type2;
void f0(const X0&); // expected-note{{here}}
void f0(X0&);
void f0(const X0<T, U>&); // expected-error{{redecl}}
void f1(const X0&); // expected-note{{here}}
void f1(X0&);
void f1(const X0<type, U_type2>&); // expected-error{{redecl}}
void f2(const X0&); // expected-note{{here}}
void f2(X0&);
void f2(const ::X0<type, U_type2>&); // expected-error{{redecl}}
};
2009-10-14 14:03:49 -04:00
template<typename T, T N>
struct X1 {
void f0(const X1&); // expected-note{{here}}
void f0(X1&);
void f0(const X1<T, N>&); // expected-error{{redecl}}
};