YS
Size: a a a
YS
В
VT
VT
VT
VT
VT
VT
VT
VT
S
template <unsigned length, class Element>
struct Vect {};
template <unsigned l, class E>
constexpr Vect<l, E> make(E seq[l]) {
return Vect<l, E>{};
};
int main () {
auto val = make({1,2,3});
};
S
JC
JC
VT
VT
VT
B
KS