2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2009-10-08 06:35:40 +08:00
|
|
|
template<typename T, typename U = int> struct A; // expected-note {{template is declared here}} \
|
|
|
|
// expected-note{{explicitly specialized}}
|
2009-02-18 07:15:12 +08:00
|
|
|
|
2009-02-26 06:02:03 +08:00
|
|
|
template<> struct A<double, double>; // expected-note{{forward declaration}}
|
2009-02-18 07:15:12 +08:00
|
|
|
|
2009-02-26 06:02:03 +08:00
|
|
|
template<> struct A<float, float> { // expected-note{{previous definition}}
|
2009-02-18 07:15:12 +08:00
|
|
|
int x;
|
|
|
|
};
|
|
|
|
|
2009-02-26 06:02:03 +08:00
|
|
|
template<> struct A<float> { // expected-note{{previous definition}}
|
2009-02-18 07:15:12 +08:00
|
|
|
int y;
|
|
|
|
};
|
|
|
|
|
|
|
|
int test_specs(A<float, float> *a1, A<float, int> *a2) {
|
|
|
|
return a1->x + a2->y;
|
|
|
|
}
|
|
|
|
|
|
|
|
int test_incomplete_specs(A<double, double> *a1,
|
2009-03-03 12:44:36 +08:00
|
|
|
A<double> *a2)
|
2009-02-18 07:15:12 +08:00
|
|
|
{
|
2009-11-17 13:17:33 +08:00
|
|
|
(void)a1->x; // expected-error{{member access into incomplete type}}
|
2010-03-10 19:27:22 +08:00
|
|
|
(void)a2->x; // expected-error{{implicit instantiation of undefined template 'A<double, int>'}}
|
2009-02-18 07:15:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef float FLOAT;
|
|
|
|
|
2009-02-26 06:02:03 +08:00
|
|
|
template<> struct A<float, FLOAT>;
|
2009-02-18 07:15:12 +08:00
|
|
|
|
2009-02-26 06:02:03 +08:00
|
|
|
template<> struct A<FLOAT, float> { }; // expected-error{{redefinition}}
|
2009-02-18 07:15:12 +08:00
|
|
|
|
2009-02-26 06:02:03 +08:00
|
|
|
template<> struct A<float, int> { }; // expected-error{{redefinition}}
|
2009-02-19 08:52:42 +08:00
|
|
|
|
2009-02-26 06:02:03 +08:00
|
|
|
template<typename T, typename U = int> struct X;
|
2009-02-19 08:52:42 +08:00
|
|
|
|
2009-02-26 06:02:03 +08:00
|
|
|
template <> struct X<int, int> { int foo(); }; // #1
|
|
|
|
template <> struct X<float> { int bar(); }; // #2
|
2009-02-19 08:52:42 +08:00
|
|
|
|
|
|
|
typedef int int_type;
|
|
|
|
void testme(X<int_type> *x1, X<float, int> *x2) {
|
2009-02-26 08:02:51 +08:00
|
|
|
(void)x1->foo(); // okay: refers to #1
|
|
|
|
(void)x2->bar(); // okay: refers to #2
|
2009-02-19 08:52:42 +08:00
|
|
|
}
|
Implement parsing of nested-name-specifiers that involve template-ids, e.g.,
std::vector<int>::allocator_type
When we parse a template-id that names a type, it will become either a
template-id annotation (which is a parsed representation of a
template-id that has not yet been through semantic analysis) or a
typename annotation (where semantic analysis has resolved the
template-id to an actual type), depending on the context. We only
produce a type in contexts where we know that we only need type
information, e.g., in a type specifier. Otherwise, we create a
template-id annotation that can later be "upgraded" by transforming it
into a typename annotation when the parser needs a type. This occurs,
for example, when we've parsed "std::vector<int>" above and then see
the '::' after it. However, it means that when writing something like
this:
template<> class Outer::Inner<int> { ... };
We have two tokens to represent Outer::Inner<int>: one token for the
nested name specifier Outer::, and one template-id annotation token
for Inner<int>, which will be passed to semantic analysis to define
the class template specialization.
Most of the churn in the template tests in this patch come from an
improvement in our error recovery from ill-formed template-ids.
llvm-svn: 65467
2009-02-26 03:37:18 +08:00
|
|
|
|
2009-02-26 08:02:51 +08:00
|
|
|
// Make sure specializations are proper classes.
|
|
|
|
template<>
|
|
|
|
struct A<char> {
|
|
|
|
A();
|
|
|
|
};
|
|
|
|
|
|
|
|
A<char>::A() { }
|
|
|
|
|
2009-08-27 02:54:58 +08:00
|
|
|
// Make sure we can see specializations defined before the primary template.
|
|
|
|
namespace N{
|
|
|
|
template<typename T> struct A0;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace N {
|
|
|
|
template<>
|
|
|
|
struct A0<void> {
|
|
|
|
typedef void* pointer;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace N {
|
|
|
|
template<typename T>
|
|
|
|
struct A0 {
|
|
|
|
void foo(A0<void>::pointer p = 0);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2009-02-26 08:02:51 +08:00
|
|
|
// Diagnose specialization errors
|
2009-10-27 14:26:26 +08:00
|
|
|
struct A<double> { }; // expected-error{{template specialization requires 'template<>'}}
|
2009-02-26 06:02:03 +08:00
|
|
|
|
|
|
|
template<> struct ::A<double>;
|
|
|
|
|
|
|
|
namespace N {
|
2009-10-08 06:35:40 +08:00
|
|
|
template<typename T> struct B; // expected-note 2{{explicitly specialized}}
|
2009-02-26 06:02:03 +08:00
|
|
|
|
2009-02-26 06:18:32 +08:00
|
|
|
template<> struct ::N::B<char>; // okay
|
2009-02-26 06:02:03 +08:00
|
|
|
template<> struct ::N::B<short>; // okay
|
|
|
|
template<> struct ::N::B<int>; // okay
|
2009-02-26 06:18:32 +08:00
|
|
|
|
|
|
|
int f(int);
|
2009-02-26 06:02:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
template<> struct N::B<int> { }; // okay
|
|
|
|
|
2011-12-30 05:57:33 +08:00
|
|
|
template<> struct N::B<float> { }; // expected-warning{{C++11 extension}}
|
2009-02-26 06:02:03 +08:00
|
|
|
|
|
|
|
namespace M {
|
|
|
|
template<> struct ::N::B<short> { }; // expected-error{{class template specialization of 'B' not in a namespace enclosing 'N'}}
|
|
|
|
|
2013-12-07 13:09:50 +08:00
|
|
|
template<> struct ::A<long double>; // expected-error{{must occur at global scope}}
|
2009-02-26 06:02:03 +08:00
|
|
|
}
|
2009-02-26 06:18:32 +08:00
|
|
|
|
|
|
|
template<> struct N::B<char> {
|
|
|
|
int testf(int x) { return f(x); }
|
|
|
|
};
|
2009-02-26 08:02:51 +08:00
|
|
|
|
2009-10-27 14:26:26 +08:00
|
|
|
// PR5264
|
|
|
|
template <typename T> class Foo;
|
|
|
|
Foo<int>* v;
|
|
|
|
Foo<int>& F() { return *v; }
|
|
|
|
template <typename T> class Foo {};
|
|
|
|
Foo<int> x;
|
2009-11-12 08:46:20 +08:00
|
|
|
|
|
|
|
|
|
|
|
// Template template parameters
|
|
|
|
template<template<class T> class Wibble>
|
|
|
|
class Wibble<int> { }; // expected-error{{cannot specialize a template template parameter}}
|
2011-10-21 00:41:18 +08:00
|
|
|
|
|
|
|
namespace rdar9676205 {
|
|
|
|
template<typename T>
|
|
|
|
struct X {
|
|
|
|
template<typename U>
|
|
|
|
struct X<U*> { // expected-error{{explicit specialization of 'X' in class scope}}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2014-02-09 08:54:43 +08:00
|
|
|
|
|
|
|
namespace PR18009 {
|
|
|
|
template <typename T> struct A {
|
|
|
|
template <int N, int M> struct S;
|
|
|
|
template <int N> struct S<N, sizeof(T)> {};
|
|
|
|
};
|
|
|
|
A<int>::S<8, sizeof(int)> a; // ok
|
|
|
|
|
|
|
|
template <typename T> struct B {
|
|
|
|
template <int N, int M> struct S; // expected-note {{declared here}}
|
|
|
|
template <int N> struct S<N, sizeof(T) +
|
|
|
|
N // expected-error {{non-type template argument depends on a template parameter of the partial specialization}}
|
|
|
|
> {};
|
|
|
|
};
|
|
|
|
B<int>::S<8, sizeof(int) + 8> s; // expected-error {{undefined}}
|
|
|
|
|
|
|
|
template<int A> struct outer {
|
|
|
|
template<int B, int C> struct inner {};
|
|
|
|
template<int C> struct inner<A * 2, C> {};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace PR16519 {
|
|
|
|
template<typename T, T...N> struct integer_sequence { typedef T value_type; }; // expected-warning {{extension}}
|
|
|
|
|
|
|
|
template<typename T> struct __make_integer_sequence;
|
|
|
|
template<typename T, T N> using make_integer_sequence = typename __make_integer_sequence<T>::template make<N, N % 2>::type; // expected-warning {{extension}}
|
|
|
|
|
|
|
|
template<typename T, typename T::value_type ...Extra> struct __make_integer_sequence_impl; // expected-warning {{extension}}
|
|
|
|
template<typename T, T ...N, T ...Extra> struct __make_integer_sequence_impl<integer_sequence<T, N...>, Extra...> { // expected-warning 2{{extension}}
|
|
|
|
typedef integer_sequence<T, N..., sizeof...(N) + N..., Extra...> type;
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T> struct __make_integer_sequence {
|
|
|
|
template<T N, T Parity, typename = void> struct make;
|
|
|
|
template<typename Dummy> struct make<0, 0, Dummy> { typedef integer_sequence<T> type; };
|
|
|
|
template<typename Dummy> struct make<1, 1, Dummy> { typedef integer_sequence<T, 0> type; };
|
|
|
|
template<T N, typename Dummy> struct make<N, 0, Dummy> : __make_integer_sequence_impl<make_integer_sequence<T, N/2> > {};
|
|
|
|
template<T N, typename Dummy> struct make<N, 1, Dummy> : __make_integer_sequence_impl<make_integer_sequence<T, N/2>, N - 1> {};
|
|
|
|
};
|
|
|
|
|
|
|
|
using X = make_integer_sequence<int, 5>; // expected-warning {{extension}}
|
|
|
|
using X = integer_sequence<int, 0, 1, 2, 3, 4>; // expected-warning {{extension}}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace DefaultArgVsPartialSpec {
|
|
|
|
// Check that the diagnostic points at the partial specialization, not just at
|
|
|
|
// the default argument.
|
|
|
|
template<typename T, int N =
|
|
|
|
sizeof(T) // expected-note {{template parameter is used in default argument declared here}}
|
|
|
|
> struct X {};
|
|
|
|
template<typename T> struct X<T> {}; // expected-error {{non-type template argument depends on a template parameter of the partial specialization}}
|
|
|
|
|
|
|
|
template<typename T,
|
|
|
|
T N = 0 // expected-note {{template parameter is declared here}}
|
|
|
|
> struct S;
|
|
|
|
template<typename T> struct S<T> {}; // expected-error {{non-type template argument specializes a template parameter with dependent type 'T'}}
|
|
|
|
}
|