blob: 13d76befe289aac76da9be1e436b28b6619d0a76 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregord5a423b2009-09-25 18:43:00 +00002
3template void *; // expected-error{{expected unqualified-id}}
4
5template typedef void f0; // expected-error{{explicit instantiation of typedef}}
6
7int v0; // expected-note{{refers here}}
8template int v0; // expected-error{{does not refer}}
9
10template<typename T>
11struct X0 {
12 static T value;
13
14 T f0(T x) {
15 return x + 1; // expected-error{{invalid operands}}
16 }
Douglas Gregor558c0322009-10-14 23:41:34 +000017 T* f0(T*, T*) { return T(); }
Douglas Gregord5a423b2009-09-25 18:43:00 +000018
19 template<typename U>
Douglas Gregor558c0322009-10-14 23:41:34 +000020 T f0(T, U) { return T(); }
Douglas Gregord5a423b2009-09-25 18:43:00 +000021};
22
Douglas Gregor558c0322009-10-14 23:41:34 +000023template<typename T>
24T X0<T>::value; // expected-error{{no matching constructor}}
25
Douglas Gregord5a423b2009-09-25 18:43:00 +000026template int X0<int>::value;
27
John McCall220ccbf2010-01-13 00:25:19 +000028struct NotDefaultConstructible { // expected-note{{candidate constructor (the implicit copy constructor)}}
John McCallb1622a12010-01-06 09:43:14 +000029 NotDefaultConstructible(int); // expected-note{{candidate constructor}}
Douglas Gregord5a423b2009-09-25 18:43:00 +000030};
31
Douglas Gregor558c0322009-10-14 23:41:34 +000032template NotDefaultConstructible X0<NotDefaultConstructible>::value; // expected-note{{instantiation}}
Douglas Gregord5a423b2009-09-25 18:43:00 +000033
34template int X0<int>::f0(int);
35template int* X0<int>::f0(int*, int*);
36template int X0<int>::f0(int, float);
37
38template int X0<int>::f0(int) const; // expected-error{{does not refer}}
39template int* X0<int>::f0(int*, float*); // expected-error{{does not refer}}
40
41struct X1 { };
42typedef int X1::*MemPtr;
43
44template MemPtr X0<MemPtr>::f0(MemPtr); // expected-note{{requested here}}
45
46struct X2 {
47 int f0(int); // expected-note{{refers here}}
48
Douglas Gregor558c0322009-10-14 23:41:34 +000049 template<typename T> T f1(T) { return T(); }
50 template<typename T> T* f1(T*) { return 0; }
Douglas Gregord5a423b2009-09-25 18:43:00 +000051
Douglas Gregor558c0322009-10-14 23:41:34 +000052 template<typename T, typename U> void f2(T, U*) { } // expected-note{{candidate}}
53 template<typename T, typename U> void f2(T*, U) { } // expected-note{{candidate}}
Douglas Gregord5a423b2009-09-25 18:43:00 +000054};
55
56template int X2::f0(int); // expected-error{{not an instantiation}}
57
58template int *X2::f1(int *); // okay
59
60template void X2::f2(int *, int *); // expected-error{{ambiguous}}
Douglas Gregordb422df2009-09-25 21:45:23 +000061
62
Douglas Gregor558c0322009-10-14 23:41:34 +000063template<typename T> void print_type() { }
Douglas Gregordb422df2009-09-25 21:45:23 +000064
65template void print_type<int>();
66template void print_type<float>();
67
Douglas Gregor558c0322009-10-14 23:41:34 +000068template<typename T> void print_type(T*) { }
Douglas Gregordb422df2009-09-25 21:45:23 +000069
70template void print_type(int*);
71template void print_type<int>(float*); // expected-error{{does not refer}}
72
73void print_type(double*);
74template void print_type<double>(double*);
Douglas Gregorb2f81cf2009-10-01 23:51:25 +000075
76// PR5069
77template<int I> void foo0 (int (&)[I + 1]) { }
78template void foo0<2> (int (&)[3]);
Chandler Carruth291b4412010-02-13 10:17:50 +000079
80namespace explicit_instantiation_after_implicit_instantiation {
81 template <int I> struct X0 { static int x; };
82 template <int I> int X0<I>::x;
83 void test1() { (void)&X0<1>::x; }
84 template struct X0<1>;
85}
Douglas Gregor669eed82010-07-13 00:10:04 +000086
Douglas Gregor7306ebf2010-12-01 20:32:20 +000087template<typename> struct X3 { };
88inline template struct X3<int>; // expected-warning{{ignoring 'inline' keyword on explicit template instantiation}}
89static template struct X3<float>; // expected-warning{{ignoring 'static' keyword on explicit template instantiation}}
90
Sebastian Redld941fa42011-04-24 16:27:48 +000091namespace PR7622 {
Douglas Gregor669eed82010-07-13 00:10:04 +000092 template<typename,typename=int>
93 struct basic_streambuf;
94
Douglas Gregor669eed82010-07-13 00:10:04 +000095 template<typename,typename>
96 struct basic_streambuf{friend bob<>()}; // expected-error{{unknown type name 'bob'}} \
Richard Trieu2fe9b7f2011-12-15 00:38:15 +000097 // expected-error{{expected member name or ';' after declaration specifiers}}
Sebastian Redld941fa42011-04-24 16:27:48 +000098 template struct basic_streambuf<int>;
99}
Argyrios Kyrtzidis92410572011-12-23 02:16:45 +0000100
101// Test that we do not crash.
102class TC1 {
103 class TC2 {
104 template // FIXME: error here.
105 void foo() { }
106 };
107};