February 26, 2006
D.bug.
A auto object produced in a version scope sets up a segmentation falt.

void main()
{
@@@@version(all) { auto Object obj = new Object; }
@@@@obj.print;
}


March 01, 2006
yama schrieb am 2006-02-26:
> D.bug.
> A auto object produced in a version scope sets up a segmentation falt.
>
> void main()
> {
>         version(all) { auto Object obj = new Object; }
>         obj.print;
> }

Added to DStress as http://dstress.kuehne.cn/run/a/auto_16_A.d http://dstress.kuehne.cn/run/a/auto_16_B.d http://dstress.kuehne.cn/run/a/auto_16_C.d http://dstress.kuehne.cn/run/a/auto_16_D.d http://dstress.kuehne.cn/run/a/auto_16_E.d http://dstress.kuehne.cn/run/a/auto_16_F.d

Thomas