The following defines a variadic non-type nested class template, DEF. The non-type template parameters may be heterogeneous according to the type arguments provided for Ts.
template <typename ...Ts>
struct ABC {
template <Ts ...Xs>
struct DEF {};
};
A DEF object can be declared as follows:
ABC<int,bool>::DEF<17,true> x;
My question is, can the number of non-type template arguments provided to DEF be less than the number of type template arguments provided to ABC? For example, are either of these declarations valid:
ABC<int,bool>::DEF<17> y;
ABC<int,bool>::DEF< > z;