blob: 2c58fefa065fdad5c0197ac12406fd45a1bca2fd [file] [log] [blame]
Richard Smithf8ba3fd2017-06-02 22:53:06 +00001// RUN: %clang_cc1 -fsyntax-only %s -std=c++1z -verify
Douglas Gregor291e8ee2011-05-21 22:16:50 +00002
3// PR7511
Richard Smithf8ba3fd2017-06-02 22:53:06 +00004template<a> // expected-error +{{}}
Douglas Gregor5f0e2522010-07-14 23:14:12 +00005struct int_;
6
Richard Smithf8ba3fd2017-06-02 22:53:06 +00007template<a> // expected-error +{{}}
Douglas Gregor5f0e2522010-07-14 23:14:12 +00008template<int,typename T1,typename>
9struct ac
10{
11 typedef T1 ae
12};
13
14template<class>struct aaa
15{
Richard Smithf8ba3fd2017-06-02 22:53:06 +000016 typedef ac<1,int,int>::ae ae // expected-error +{{}}
Douglas Gregor5f0e2522010-07-14 23:14:12 +000017};
18
19template<class>
20struct state_machine
21{
22 typedef aaa<int>::ae aaa;
23 int start()
24 {
25 ant(0);
26 }
27
28 template<class>
29 struct region_processing_helper
30 {
31 template<class,int=0>
32 struct In;
33
34 template<int my>
Richard Smithf8ba3fd2017-06-02 22:53:06 +000035 struct In<a::int_<aaa::a>,my>; // expected-error +{{}}
Douglas Gregor5f0e2522010-07-14 23:14:12 +000036
37 template<class Event>
38 int process(Event)
39 {
Richard Smithf8ba3fd2017-06-02 22:53:06 +000040 In<a::int_<0> > a; // expected-error +{{}}
Douglas Gregor5f0e2522010-07-14 23:14:12 +000041 }
Richard Smithf8ba3fd2017-06-02 22:53:06 +000042 } // expected-error +{{}}
Douglas Gregor5f0e2522010-07-14 23:14:12 +000043 template<class Event>
44 int ant(Event)
45 {
46 region_processing_helper<int>* helper;
Richard Smithf8ba3fd2017-06-02 22:53:06 +000047 helper->process(0) // expected-error +{{}}
Douglas Gregor5f0e2522010-07-14 23:14:12 +000048 }
49};
50
51int a()
52{
53 state_machine<int> p;
54 p.ant(0);
55}
Douglas Gregor291e8ee2011-05-21 22:16:50 +000056
57// PR9974
58template <int> struct enable_if;
59template <class > struct remove_reference ;
60template <class _Tp> struct remove_reference<_Tp&> ;
61
62template <class > struct __tuple_like;
63
64template <class _Tp, class _Up, int = __tuple_like<typename remove_reference<_Tp>::type>::value>
65struct __tuple_convertible;
66
67struct pair
68{
69template<class _Tuple, int = enable_if<__tuple_convertible<_Tuple, pair>::value>::type>
70pair(_Tuple&& );
71};
72
73template <class> struct basic_ostream;
74
75template <int>
76void endl( ) ;
77
78extern basic_ostream<char> cout;
79
Richard Smithf8ba3fd2017-06-02 22:53:06 +000080int operator<<( basic_ostream<char> , pair ) ; // expected-note +{{}}
Douglas Gregor291e8ee2011-05-21 22:16:50 +000081
82void register_object_imp ( )
83{
Richard Smithf8ba3fd2017-06-02 22:53:06 +000084cout << endl<1>; // expected-error +{{}}
Douglas Gregor291e8ee2011-05-21 22:16:50 +000085}
Douglas Gregorc5c01a62012-09-13 21:01:57 +000086
87// PR12933
Richard Smithf8ba3fd2017-06-02 22:53:06 +000088namespace PR12933 {
89 template<typename S> // expected-error +{{}}
Douglas Gregorc5c01a62012-09-13 21:01:57 +000090 template<typename T>
91 void function(S a, T b) {}
92
93 int main() {
Richard Smithf8ba3fd2017-06-02 22:53:06 +000094 function(0, 1); // expected-error +{{}}
Douglas Gregorc5c01a62012-09-13 21:01:57 +000095 return 0;
96 }
97}
Eli Friedmanc681e5f2012-09-27 22:13:33 +000098
99// A buildbot failure from libcxx
100namespace libcxx_test {
101 template <class _Ptr, bool> struct __pointer_traits_element_type;
102 template <class _Ptr> struct __pointer_traits_element_type<_Ptr, true>;
103 template <template <class, class...> class _Sp, class _Tp, class ..._Args> struct __pointer_traits_element_type<_Sp<_Tp, _Args...>, true> {
104 typedef char type;
105 };
106 template <class T> struct B {};
107 __pointer_traits_element_type<B<int>, true>::type x;
108}
Eli Friedman437313c2013-06-26 23:30:50 +0000109
110namespace PR14281_part1 {
111 template <class P, int> struct A;
112 template <class P> struct A<P, 1>;
113 template <template <class, int> class S, class T> struct A<S<T, 1>, 1> {
114 typedef char type;
115 };
116 template <class T, int i> struct B {};
117 A<B<int, 1>, 1>::type x;
118}
119
120namespace PR14281_part2 {
121 typedef decltype(nullptr) nullptr_t;
122 template <class P, nullptr_t> struct A;
123 template <class P> struct A<P, nullptr>;
124 template <template <class, nullptr_t> class S, class T> struct A<S<T, nullptr>, nullptr> {
125 typedef char type;
126 };
127 template <class T, nullptr_t i> struct B {};
128 A<B<int, nullptr>, nullptr>::type x;
129}
130
131namespace PR14281_part3 {
132 extern int some_decl;
133 template <class P, int*> struct A;
134 template <class P> struct A<P, &some_decl>;
135 template <template <class, int*> class S, class T> struct A<S<T, &some_decl>, &some_decl> {
136 typedef char type;
137 };
138 template <class T, int* i> struct B {};
139 A<B<int, &some_decl>, &some_decl>::type x;
140}
Richard Smithf8ba3fd2017-06-02 22:53:06 +0000141
142namespace var_template_partial_spec_incomplete {
143 template<typename T> int n;
144 template<typename T, typename U = void> int n<T *>; // expected-error +{{}} expected-note {{}}
145 int k = n<void *>;
146}
Alex Lorenzddd279b2017-10-27 18:13:31 +0000147
148namespace deduceFunctionSpecializationForInvalidOutOfLineFunction {
149
150template <typename InputT, typename OutputT>
151struct SourceSelectionRequirement {
152 template<typename T>
153 OutputT evaluateSelectionRequirement(InputT &&Value) {
154 }
155};
156
157template <typename InputT, typename OutputT>
158OutputT SourceSelectionRequirement<InputT, OutputT>::
159evaluateSelectionRequirement<void>(InputT &&Value) { // expected-error {{cannot specialize a member of an unspecialized template}}
160 return Value;
161}
162
163}