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