Home | History | Annotate | Download | only in temp.param

Lines Matching refs:Values

17 template<int V = 0, int ...Values> struct X2nt;
18 template<int V = 0, int ...Values> using A2nt = X2nt<V, Values...>;
34 template<int ...Values, // expected-error{{template parameter pack must be the last template parameter}}
37 template<int ...Values, // expected-error{{template parameter pack must be the last template parameter}}
54 template<int... Values> struct X1nt;
55 template<int ...Values, int V> struct X1nt<V, Values...> { };
64 template<int ...Values, int V>
65 void f1nt(X1nt<V, Values...>);