digitalmars.D.bugs - template bug in docu
- nobody <nobody_member pathlink.com> Jan 25 2006
- "Walter Bright" <newshound digitalmars.com> Jan 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;
Jan 25 2006








"Walter Bright" <newshound digitalmars.com>