November 09, 2004
DMD (0.106) crashes compiling following:

class Any
{
  template X()
  {
    this() {}
  }
}

void main()
{
  Any a = new Any.X!();
}
November 10, 2004
Ilya Zaitseff schrieb am Dienstag, 9. November 2004 23:58:
> DMD (0.106) crashes compiling following:
> 
> class Any
> {
>    template X()
>    {
>      this() {}
>    }
> }
> 
> void main()
> {
>    Any a = new Any.X!();
> }

added to DStress as: http://svn.kuehne.cn/dstress/nocompile/constructor_05.d

Thomas