> > > Ok, I'll try again. when I was doing it I would get circular referencing > but maybe I did something wrong... >
Another possibility is to use `.A`: the (.) prefix means the symbol is
looked in the external scope, not inside the template. So the 2-params A is
found.
template A(T)
{
alias .A!(T, true) A;
}
