January 25, 2006
Hello,

i believe there is a bug in the documentation: Language -> Templates

template TFoo(T) { T f; } alias TFoo(int) a; alias TFoo(int) b;

must be template TFoo(T) { T f; } alias TFoo!(int) a; alias TFoo!(int) b;


January 25, 2006
Good catch. I'll fix it.