Is it possible to explicitly instantiate a template class through a template alias?
If so, how? Otherwise, can someone point to the ISO paper in which this was discussed and decided against?
template<class T>
struct A { };
/// Explicit instantiate A for int:
template struct A<int>;
/// Alias
template<class T>
using B = A<T>;
/// Explicitly instantiate A for double via alias B:
template struct B<double>;
/// error: elaborated type refers to a non-tag type
Shouldn't this instantiate A<double>
since B<T>
is just a different name for A<T>
?
This is indirectly forbidden, because:
7/3 forbids writing the explicit specialization without a class-key (
class
,struct
, orunion
):7.1.6.3/2 forbids combining a class-key with an alias template specialization: