On Thursday, 20 November 2014 at 07:31:52 UTC, Iain Buclaw via
D.gnu wrote:
Looking at the date it was fixed in DMD, the next release merge
should
resolve that.
Iain.
When will that be?
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
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