[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / clang / test / SemaTemplate / explicit-instantiation.cpp
blobd88c50bc29de37c46d759c094532aef40940046d
1 // RUN: %clang_cc1 -fsyntax-only -verify -fexceptions -fcxx-exceptions %s
2 // RUN: %clang_cc1 -fsyntax-only -verify -fexceptions -fcxx-exceptions -std=c++11 %s
4 template void *; // expected-error{{expected unqualified-id}}
6 template typedef void f0; // expected-error{{explicit instantiation of typedef}}
8 int v0; // expected-note{{refers here}}
9 template int v0; // expected-error{{does not refer}}
11 template<typename T>
12 struct X0 {
13 static T value;
15 T f0(T x) {
16 return x + 1; // expected-error{{invalid operands}}
18 T *f0(T *, T *) { return T(); } // expected-warning 0-1 {{expression which evaluates to zero treated as a null pointer constant of type 'int *'}} expected-error 0-1 {{cannot initialize return object of type 'int *' with an rvalue of type 'int'}}
20 template <typename U> T f0(T, U) { return T(); } // expected-note-re {{candidate template ignored: could not match 'int (int, U){{( __attribute__\(\(thiscall\)\))?}}' against 'int (int){{( __attribute__\(\(thiscall\)\))?}} const'}} \
21 // expected-note {{candidate template ignored: could not match 'int' against 'int *'}}
24 template<typename T>
25 T X0<T>::value; // expected-error{{no matching constructor}}
27 template int X0<int>::value;
29 struct NotDefaultConstructible { // expected-note{{candidate constructor (the implicit copy constructor)}} expected-note 0-1 {{candidate constructor (the implicit move constructor)}}
30 NotDefaultConstructible(int); // expected-note{{candidate constructor}}
33 template NotDefaultConstructible X0<NotDefaultConstructible>::value; // expected-note{{instantiation}}
35 template int X0<int>::f0(int);
36 template int* X0<int>::f0(int*, int*); // expected-note{{in instantiation of member function 'X0<int>::f0' requested here}}
37 template int X0<int>::f0(int, float);
39 template int X0<int>::f0(int) const; // expected-error{{does not refer}}
40 template int* X0<int>::f0(int*, float*); // expected-error{{does not refer}}
42 struct X1 { };
43 typedef int X1::*MemPtr;
45 template MemPtr X0<MemPtr>::f0(MemPtr); // expected-note{{requested here}}
47 struct X2 {
48 int f0(int); // expected-note{{refers here}}
50 template<typename T> T f1(T) { return T(); }
51 template<typename T> T* f1(T*) { return 0; }
53 template<typename T, typename U> void f2(T, U*) { } // expected-note{{candidate}}
54 template<typename T, typename U> void f2(T*, U) { } // expected-note{{candidate}}
57 template int X2::f0(int); // expected-error{{not an instantiation}}
59 template int *X2::f1(int *); // okay
61 template void X2::f2(int *, int *); // expected-error{{ambiguous}}
63 template <typename T>
64 void print_type() {} // expected-note {{candidate template ignored: could not match 'void ()' against 'void (float *)'}}
66 template void print_type<int>();
67 template void print_type<float>();
69 template <typename T>
70 void print_type(T *) {} // expected-note {{candidate template ignored: could not match 'void (int *)' against 'void (float *)'}}
72 template void print_type(int*);
73 template void print_type<int>(float*); // expected-error{{does not refer}}
75 void print_type(double*);
76 template void print_type<double>(double*);
78 // PR5069
79 template<int I> void foo0 (int (&)[I + 1]) { }
80 template void foo0<2> (int (&)[3]);
82 namespace explicit_instantiation_after_implicit_instantiation {
83 template <int I> struct X0 { static int x; };
84 template <int I> int X0<I>::x;
85 void test1() { (void)&X0<1>::x; }
86 template struct X0<1>;
89 template<typename> struct X3 { };
90 inline template struct X3<int>; // expected-warning{{ignoring 'inline' keyword on explicit template instantiation}}
91 static template struct X3<float>; // expected-warning{{ignoring 'static' keyword on explicit template instantiation}}
93 namespace PR7622 {
94 template<typename,typename=int>
95 struct basic_streambuf;
97 template<typename,typename>
98 struct basic_streambuf{friend bob<>()}; // expected-error{{no template named 'bob'}} \
99 // expected-error{{expected member name or ';' after declaration specifiers}}
100 template struct basic_streambuf<int>;
103 // Test that we do not crash.
104 class TC1 {
105 class TC2 {
106 template
107 void foo() { } // expected-error{{expected '<' after 'template'}}
111 namespace PR8020 {
112 template <typename T> struct X { X() {} };
113 template<> struct X<int> { X(); };
114 template X<int>::X() {} // expected-error{{function cannot be defined in an explicit instantiation}}
117 namespace PR10086 {
118 template void foobar(int i) {} // expected-error{{function cannot be defined in an explicit instantiation}}
119 int func() {
120 foobar(5);
124 namespace undefined_static_data_member {
125 template<typename T> struct A {
126 static int a; // expected-note {{here}}
127 template<typename U> static int b; // expected-note {{here}} expected-warning 0+ {{extension}}
129 struct B {
130 template<typename U> static int c; // expected-note {{here}} expected-warning 0+ {{extension}}
133 template int A<int>::a; // expected-error {{explicit instantiation of undefined static data member 'a' of class template 'undefined_static_data_member::A<int>'}}
134 template int A<int>::b<int>; // expected-error {{explicit instantiation of undefined variable template 'undefined_static_data_member::A<int>::b<int>'}}
135 template int B::c<int>; // expected-error {{explicit instantiation of undefined variable template 'undefined_static_data_member::B::c<int>'}}
138 template<typename T> struct C {
139 static int a;
140 template<typename U> static int b; // expected-warning 0+ {{extension}}
142 struct D {
143 template<typename U> static int c; // expected-warning 0+ {{extension}}
145 template<typename T> int C<T>::a;
146 template<typename T> template<typename U> int C<T>::b; // expected-warning 0+ {{extension}}
147 template<typename U> int D::c; // expected-warning 0+ {{extension}}
149 template int C<int>::a;
150 template int C<int>::b<int>;
151 template int D::c<int>;
154 // expected-note@+1 3-4 {{explicit instantiation refers here}}
155 template <class T> void Foo(T i) throw(T) { throw i; }
156 // expected-error@+1 {{exception specification in explicit instantiation does not match instantiated one}}
157 template void Foo(int a) throw(char);
158 // expected-error@+1 {{exception specification in explicit instantiation does not match instantiated one}}
159 template void Foo(double a) throw();
160 // expected-error@+1 1 {{exception specification in explicit instantiation does not match instantiated one}}
161 template void Foo(long a) throw(long, char);
162 template void Foo(float a);
163 #if __cplusplus >= 201103L
164 // expected-error@+1 0-1 {{exception specification in explicit instantiation does not match instantiated one}}
165 template void Foo(double a) noexcept;
166 #endif
168 #if __cplusplus >= 201103L
169 namespace PR21942 {
170 template <int>
171 struct A {
172 virtual void foo() final;
175 template <>
176 void A<0>::foo() {} // expected-note{{overridden virtual function is here}}
178 struct B : A<0> {
179 virtual void foo() override; // expected-error{{declaration of 'foo' overrides a 'final' function}}
182 #endif