template isNarrowString(T)
{
enum isNarrowString = (is(T : const char[]) || is(T : const wchar[])) && !isAggregateType!T;
}
Makes me wonder why isAggregateType is not 71000 instantiations, too?
Maybe we can avoid generating a mangled name for a template if it is an eponymous one that evaluates to a manifest constant? This will save a ton of memory.