digitalmars.D.bugs - template bug in docu
- nobody (10/10) Jan 25 2006 Hello,
- Walter Bright (1/1) Jan 25 2006 Good catch. I'll fix it.
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>