http://d.puremagic.com/issues/show_bug.cgi?id=1748
------- Comment #6 from [EMAIL PROTECTED] 2008-11-23 08:43 -------
The patch I submitted fixes the case of:
class S(T){}
I don't think it fixes any other cases:
class S(T)
{
class B {}
}
S!(int).B.stringof == B
template Template(T)
{
struct S {}
}
Template!(int).S.stringof == S
However, it does cover the basic case, which is something of an improvement.
I'll see what I can do about everything else. Additionally, I think there might
be something going on with nested template .stringof that I have to look into.
--