I have this template
template<typename T, int N> using raw_array = T[N];
how can I use something like this
auto&& z = raw_array<auto&, 5>{};
the error is: ‘auto’ is not allowed here.
I’ve searched around and found nothing so far that’s why I m asking.
New contributor
atd563 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.