mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 19:45:40 -04:00
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
// RUN: clang -fsyntax-only -verify %s
|
|
template<typename T, typename U = int> class A;
|
|
|
|
template<> class A<double, double>; // expected-note{{forward declaration}}
|
|
|
|
template<> class A<float, float> { // expected-note{{previous definition}}
|
|
int x;
|
|
};
|
|
|
|
template<> class A<float> { // expected-note{{previous definition}}
|
|
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,
|
|
A<double> *a2) // FIXME: expected-note{{forward declaration}}
|
|
{
|
|
(void)a1->x; // expected-error{{incomplete definition of type 'A<double, double>'}}
|
|
(void)a2->x; // expected-error{{incomplete definition of type 'A<double>'}}
|
|
}
|
|
|
|
typedef float FLOAT;
|
|
|
|
template<> class A<float, FLOAT>;
|
|
|
|
template<> class A<FLOAT, float> { }; // expected-error{{redefinition}}
|
|
|
|
template<> class A<float, int> { }; // expected-error{{redefinition}}
|
|
|
|
template<typename T, typename U = int> class X;
|
|
|
|
template <> class X<int, int> { int foo(); }; // #1
|
|
template <> class X<float> { int bar(); }; // #2
|
|
|
|
typedef int int_type;
|
|
void testme(X<int_type> *x1, X<float, int> *x2) {
|
|
x1->foo(); // okay: refers to #1
|
|
x2->bar(); // okay: refers to #2
|
|
}
|
|
|
|
// Diagnose specializations in a different namespace
|
|
class A<double> { };
|