Janice Caron wrote:
> Do we count this as a bug, or not?
>
> class T(int N)
> {
> }
>
> writefln(T!(1).stringof);
>
> This writes "T", not "T!(1)".
> So, is that a real bug, or are my expectations just too high?
There are quite a few stringof bugs. I think this one hasn't been reported before.
BTW, did you try typeof(T!(1)).stringof ?