Re: An occurence of a bug which was fixed in DMD a while ago

2014-11-19 Thread Iain Buclaw via D.gnu
On 20 Nov 2014 01:45, "Koz Ross via D.gnu" wrote: > > The bug is similar to https://issues.dlang.org/show_bug.cgi?id=6998. Specifically, here is the code that can be used to demonstrate it. I'm using GDC 4.9.1 (according to gdc --version). > > module badbh; > > import std.container, std.string, st

An occurence of a bug which was fixed in DMD a while ago

2014-11-19 Thread Koz Ross via D.gnu
The bug is similar to https://issues.dlang.org/show_bug.cgi?id=6998. Specifically, here is the code that can be used to demonstrate it. I'm using GDC 4.9.1 (according to gdc --version). module badbh; import std.container, std.string, std.stdio; class Node { size_t val; Node next; this