Lines Matching full:used
23 struct A<T>::template B<U>::C { }; // expected-error{{'template' cannot be used after a declarative…
27 struct A<int>::template B<bool>::C; // expected-error{{'template' cannot be used after a declarativ…
31 struct A<int>::template B<bool>::C { }; // expected-error{{'template' cannot be used after a declar…
36 struct A<T>::template B<U>::D<V*>; // expected-error{{'template' cannot be used after a declarative…
41 struct A<T>::B<U>::template D<V**>; // expected-error{{'template' cannot be used after a declarativ…
46 struct A<T>::template B<U>::D { }; // expected-error{{'template' cannot be used after a declarative…
51 struct A<T>::template B<U>::D<V*> { }; // expected-error{{'template' cannot be used after a declara…
56 struct A<T>::B<U>::template D<V**> { }; // expected-error{{'template' cannot be used after a declar…
61 struct A<int>::template B<bool>::D; // expected-error{{'template' cannot be used after a declarativ…
66 struct A<int>::template B<bool>::D<short>; // expected-error{{'template' cannot be used after a dec…
71 struct A<int>::B<bool>::template D<long>; // expected-error{{'template' cannot be used after a decl…
76 struct A<int>::template B<bool>::D<V*>; // expected-error{{'template' cannot be used after a declar…
81 struct A<int>::B<bool>::template D<V**>; // expected-error{{'template' cannot be used after a decla…
86 struct A<int>::template B<bool>::D { }; // expected-error{{'template' cannot be used after a declar…
91 struct A<int>::template B<bool>::D<short> { }; // expected-error{{'template' cannot be used after a…
96 struct A<int>::B<bool>::template D<long> { }; // expected-error{{'template' cannot be used after a …
101 struct A<int>::template B<bool>::D<V*> { }; // expected-error{{'template' cannot be used after a de…
106 struct A<int>::B<bool>::template D<V**> { }; // expected-error{{'template' cannot be used after a d…
110 void A<T>::template B<U>::f() { } // expected-error{{'template' cannot be used after a declarative}} in f()
114 void A<int>::template B<bool>::f() { } // expected-error{{'template' cannot be used after a declara… in f()
119 void A<T>::template B<U>::g() { } // expected-error{{'template' cannot be used after a declarative}} in g()
124 void A<int>::B<bool>::template g<short>() { } // expected-error{{'template' cannot be used after a … in g()
129 void A<int>::template B<bool>::g<long>() { } // expected-error{{'template' cannot be used after a d… in g()
134 void A<int>::template B<bool>::g() { } // expected-error{{'template' cannot be used after a declara… in g()
138 int A<T>::template B<U>::x = 0; // expected-error{{'template' cannot be used after a declarative}}
143 int A<T>::template B<U>::y = 0; // expected-error{{'template' cannot be used after a declarative}}
148 int A<T>::template B<U>::y<V*> = 0; // expected-error{{'template' cannot be used after a declarativ…
153 int A<T>::B<U>::template y<V**> = 0; // expected-error{{'template' cannot be used after a declarati…
158 int A<int>::template B<bool>::y = 0; // expected-error{{'template' cannot be used after a declarati…
163 int A<int>::template B<bool>::y<short> = 0; // expected-error{{'template' cannot be used after a de…
168 int A<int>::B<bool>::template y<long> = 0; // expected-error{{'template' cannot be used after a dec…
173 int A<int>::template B<bool>::y<V*> = 0; // expected-error{{'template' cannot be used after a decla…
178 int A<int>::B<bool>::template y<V**> = 0; // expected-error{{'template' cannot be used after a decl…
181 enum class A<T>::template B<U>::E { a }; // expected-error{{'template' cannot be used after a decla…
185 enum class A<int>::template B<bool>::E; // expected-error{{'template' cannot be used after a declar…
189 enum class A<int>::template B<bool>::E { a }; // expected-error{{'template' cannot be used after a …