blob: e9b2b9b8e64e53dd4f71e81799e817929618d80c [file] [log] [blame]
Benjamin Kramerdcb52b12017-04-17 20:57:40 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregor3dad8422009-09-26 06:47:28 +00002// PR5057
John McCalld53cee12009-12-11 20:51:23 +00003namespace test0 {
4 namespace std {
5 class X {
6 public:
7 template<typename T> friend struct Y;
8 };
9 }
10
11 namespace std {
12 template<typename T> struct Y {};
13 }
Douglas Gregor3dad8422009-09-26 06:47:28 +000014}
15
John McCalld53cee12009-12-11 20:51:23 +000016namespace test1 {
Douglas Gregora29a3ff2009-09-28 00:08:27 +000017 template<typename T> void f1(T) { } // expected-note{{here}}
18
19 class X {
20 template<typename T> friend void f0(T);
21 template<typename T> friend void f1(T);
22 };
23
24 template<typename T> void f0(T) { }
25 template<typename T> void f1(T) { } // expected-error{{redefinition}}
26}
Douglas Gregor7f34bae2009-10-09 21:11:42 +000027
28// PR4768
John McCalld53cee12009-12-11 20:51:23 +000029namespace test2 {
30 template<typename T> struct X0 {
31 template<typename U> friend struct X0;
32 };
33
34 template<typename T> struct X0<T*> {
35 template<typename U> friend struct X0;
36 };
Douglas Gregor7f34bae2009-10-09 21:11:42 +000037
John McCalld53cee12009-12-11 20:51:23 +000038 template<> struct X0<int> {
39 template<typename U> friend struct X0;
40 };
Douglas Gregor7f34bae2009-10-09 21:11:42 +000041
John McCalld53cee12009-12-11 20:51:23 +000042 template<typename T> struct X1 {
43 template<typename U> friend void f2(U);
44 template<typename U> friend void f3(U);
45 };
Douglas Gregor3a88c1d2009-10-13 14:39:41 +000046
John McCalld53cee12009-12-11 20:51:23 +000047 template<typename U> void f2(U);
Douglas Gregor3a88c1d2009-10-13 14:39:41 +000048
John McCalld53cee12009-12-11 20:51:23 +000049 X1<int> x1i;
50 X0<int*> x0ip;
Douglas Gregor3a88c1d2009-10-13 14:39:41 +000051
John McCalld53cee12009-12-11 20:51:23 +000052 template<> void f2(int);
Douglas Gregor3a88c1d2009-10-13 14:39:41 +000053
John McCalld53cee12009-12-11 20:51:23 +000054 // FIXME: Should this declaration of f3 be required for the specialization of
55 // f3<int> (further below) to work? GCC and EDG don't require it, we do...
56 template<typename U> void f3(U);
Douglas Gregor3a88c1d2009-10-13 14:39:41 +000057
John McCalld53cee12009-12-11 20:51:23 +000058 template<> void f3(int);
59}
Douglas Gregor412e8bc2009-10-30 21:07:27 +000060
61// PR5332
John McCalld53cee12009-12-11 20:51:23 +000062namespace test3 {
63 template <typename T> class Foo {
64 template <typename U>
65 friend class Foo;
66 };
Douglas Gregor412e8bc2009-10-30 21:07:27 +000067
John McCalld53cee12009-12-11 20:51:23 +000068 Foo<int> foo;
Douglas Gregorbb3b46e2009-10-30 22:42:42 +000069
John McCalld53cee12009-12-11 20:51:23 +000070 template<typename T, T Value> struct X2a;
Benjamin Kramerdcb52b12017-04-17 20:57:40 +000071
72 template<typename T, int Size> struct X2b;
Douglas Gregorbb3b46e2009-10-30 22:42:42 +000073
John McCalld53cee12009-12-11 20:51:23 +000074 template<typename T>
75 class X3 {
76 template<typename U, U Value> friend struct X2a;
Benjamin Kramerdcb52b12017-04-17 20:57:40 +000077
78 // FIXME: the redeclaration note ends up here because redeclaration
79 // lookup ends up finding the friend target from X3<int>.
80 template<typename U, T Value> friend struct X2b; // expected-error {{template non-type parameter has a different type 'long' in template redeclaration}} \
81 // expected-note {{previous non-type template parameter with type 'int' is here}}
John McCalld53cee12009-12-11 20:51:23 +000082 };
Douglas Gregorbb3b46e2009-10-30 22:42:42 +000083
John McCalld53cee12009-12-11 20:51:23 +000084 X3<int> x3i; // okay
Douglas Gregorbb3b46e2009-10-30 22:42:42 +000085
John McCall598b4402010-03-25 06:39:04 +000086 X3<long> x3l; // expected-note {{in instantiation}}
John McCalld53cee12009-12-11 20:51:23 +000087}
John McCall2079d0b2009-12-14 23:19:40 +000088
89// PR5716
90namespace test4 {
91 template<typename> struct A {
92 template<typename T> friend void f(const A<T>&);
93 };
94
95 template<typename T> void f(const A<T>&) {
Chandler Carrutha92409c2011-01-04 04:44:35 +000096 int a[sizeof(T) ? -1 : -1]; // expected-error {{array with a negative size}}
John McCall2079d0b2009-12-14 23:19:40 +000097 }
98
99 void f() {
100 f(A<int>()); // expected-note {{in instantiation of function template specialization}}
101 }
102}
John McCalld43784f2009-12-18 11:25:59 +0000103
104namespace test5 {
105 class outer {
106 class foo;
107 template <typename T> friend struct cache;
108 };
109 class outer::foo {
110 template <typename T> friend struct cache;
111 };
112}
Douglas Gregore1ad8a12010-01-16 18:09:52 +0000113
114// PR6022
115namespace PR6022 {
116 template <class T1, class T2 , class T3 > class A;
117
118 namespace inner {
119 template<class T1, class T2, class T3, class T>
120 A<T1, T2, T3>& f0(A<T1, T2, T3>&, T);
121 }
122
123 template<class T1, class T2, class T3>
124 class A {
125 template<class U1, class U2, class U3, class T>
126 friend A<U1, U2, U3>& inner::f0(A<U1, U2, U3>&, T);
127 };
128}
129
Douglas Gregor16142372010-04-28 04:52:24 +0000130namespace FriendTemplateDefinition {
131 template<unsigned > struct int_c { };
132
133 template<typename T>
134 struct X {
135 template<unsigned N>
136 friend void f(X, int_c<N>) {
137 int value = N;
138 };
139 };
140
141 void test_X(X<int> x, int_c<5> i5) {
142 f(x, i5);
143 }
144}
Douglas Gregor1bd7a942010-05-03 23:29:10 +0000145
146namespace PR7013a {
147 template<class > struct X0
148 {
149 typedef int type;
150 };
151 template<typename > struct X1
152 {
153 };
154 template<typename , typename T> struct X2
155 {
156 typename T::type e;
157 };
158 namespace N
159 {
160 template <typename = int, typename = X1<int> > struct X3
161 {
162 template <typename T1, typename T2, typename B> friend void op(X2<T1, T2>& , B);
163 };
164 template <typename Ch, typename Tr, typename B> void op(X2<Ch, Tr>& , B)
165 {
166 X2<int, Tr> s;
167 }
168 }
169 int n()
170 {
171 X2<int, X0<int> > ngs;
172 N::X3<> b;
173 op(ngs, b);
174 return 0;
175 }
176}
177
178namespace PR7013b {
179 template<class > struct X0
180 {
181 typedef int type;
182 };
183 template<typename > struct X1
184 {
185 };
186 template<typename , typename T> struct X2
187 {
188 typename T::type e;
189 };
190 namespace N
191 {
192 template <typename = X1<int> > struct X3
193 {
194 template <typename T1, typename T2, typename B> friend void op(X2<T1, T2>& , B);
195 };
196 template <typename Ch, typename Tr, typename B> void op(X2<Ch, Tr>& , B)
197 {
198 X2<int, Tr> s;
199 }
200 }
201 int n()
202 {
203 X2<int, X0<int> > ngs;
204 N::X3<> b;
205 op(ngs, b);
206 return 0;
207 }
208
209}
Douglas Gregorec9518b2010-12-21 08:14:57 +0000210
211namespace PR8649 {
212 template<typename T, typename U, unsigned N>
213 struct X {
214 template<unsigned M> friend class X<T, U, M>; // expected-error{{partial specialization cannot be declared as a friend}}
215 };
216
217 X<int, float, 7> x;
218}
Chandler Carruth7c9856d2011-05-03 18:35:10 +0000219
220// Don't crash, and error on invalid friend type template.
221namespace friend_type_template_no_tag {
222 template <typename T> struct S {
223 template <typename U> friend S<U>; // expected-error{{friend type templates must use an elaborated type}}
224 };
225 template struct S<int>;
226}
Douglas Gregorf65d8ff2011-10-20 15:58:54 +0000227
228namespace PR10660 {
229 struct A {
230 template <> friend class B; // expected-error{{extraneous 'template<>' in declaration of class 'B'}}
231 };
232}
Douglas Gregor67daacb2012-03-30 16:20:47 +0000233
234namespace rdar11147355 {
Richard Smithcd556eb2013-11-08 18:59:56 +0000235 template <class T>
Douglas Gregor67daacb2012-03-30 16:20:47 +0000236 struct A {
237 template <class U> class B;
Richard Smithcd556eb2013-11-08 18:59:56 +0000238 template <class S> template <class U> friend class A<S>::B; // expected-warning {{dependent nested name specifier 'A<S>::' for friend template declaration is not supported; ignoring this friend declaration}}
239 private:
240 int n; // expected-note {{here}}
Douglas Gregor67daacb2012-03-30 16:20:47 +0000241 };
Richard Smithcd556eb2013-11-08 18:59:56 +0000242
Douglas Gregor67daacb2012-03-30 16:20:47 +0000243 template <class S> template <class U> class A<S>::B {
Richard Smithcd556eb2013-11-08 18:59:56 +0000244 public:
245 // FIXME: This should be permitted.
246 int f(A<S*> a) { return a.n; } // expected-error {{private}}
247 };
248
Douglas Gregor67daacb2012-03-30 16:20:47 +0000249 A<double>::B<double> ab;
Richard Smithcd556eb2013-11-08 18:59:56 +0000250 A<double*> a;
251 int k = ab.f(a); // expected-note {{instantiation of}}
Douglas Gregor67daacb2012-03-30 16:20:47 +0000252}
Richard Smith61e582f2012-04-20 07:12:26 +0000253
254namespace RedeclUnrelated {
255 struct S {
256 int packaged_task;
257 template<typename> class future {
258 template<typename> friend class packaged_task;
259 };
260 future<void> share;
261 };
262}
263
264namespace PR12557 {
265 template <typename>
266 struct Foo;
267
268 template <typename Foo_>
269 struct Bar {
270 typedef Foo_ Foo; // expected-note {{previous}}
271
272 template <typename> friend struct Foo; // expected-error {{redefinition of 'Foo' as different kind of symbol}}
273 };
274
275 Bar<int> b;
276}
Richard Smithe85e1762012-04-22 02:13:50 +0000277
278namespace PR12585 {
279 struct A { };
280 template<typename> struct B {
281 template<typename> friend class A::does_not_exist; // \
282 // expected-error {{friend declaration of 'does_not_exist' does not match any declaration in 'PR12585::A'}}
283 };
284
285 struct C {
286 template<typename> struct D;
287 };
288 template<typename> class E {
289 int n;
290 template<typename> friend struct C::D;
291 };
292 template<typename T> struct C::D {
293 int f() {
294 return E<int>().n;
295 }
296 };
297 int n = C::D<void*>().f();
298
299 struct F {
Benjamin Kramerdcb52b12017-04-17 20:57:40 +0000300 template<int> struct G;
Richard Smithe85e1762012-04-22 02:13:50 +0000301 };
302 template<typename T> struct H {
Benjamin Kramerdcb52b12017-04-17 20:57:40 +0000303 // FIXME: As with cases above, the note here is on an unhelpful declaration,
304 // and should point to the declaration of G within F.
Richard Smithe85e1762012-04-22 02:13:50 +0000305 template<T> friend struct F::G; // \
Benjamin Kramerdcb52b12017-04-17 20:57:40 +0000306 // expected-error {{different type 'char' in template redeclaration}} \
307 // expected-note {{previous}}
Richard Smithe85e1762012-04-22 02:13:50 +0000308 };
309 H<int> h1; // ok
310 H<char> h2; // expected-note {{instantiation}}
311}
John McCalle68672f2013-03-14 05:13:41 +0000312
313// Ensure that we can still instantiate a friend function template
314// after the friend declaration is instantiated during the delayed
315// parsing of a member function, but before the friend function has
316// been parsed.
317namespace rdar12350696 {
318 template <class T> struct A {
319 void foo() {
320 A<int> a;
321 }
322 template <class U> friend void foo(const A<U> & a) {
323 int array[sizeof(T) == sizeof(U) ? -1 : 1]; // expected-error {{negative size}}
324 }
325 };
326
327 void test() {
328 A<int> b;
329 foo(b); // expected-note {{in instantiation}}
330 }
331}