view run/this_03.d @ 1570:43123cf43146

[Issue 1586] DMD and GDC segfaults on incomplete code segment. <hoytak@cs.ubc.ca> 2007-10-07 http://d.puremagic.com/issues/show_bug.cgi?id=1586
author thomask
date Fri, 19 Oct 2007 17:19:41 +0000
parents 52c9e86b6486
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	Jarrett Billingsley <kb3ctd2@yahoo.com>
// @date@	2004-12-30
// @uri@	news:cr19ka$q75$1@digitaldaemon.com
// @uri@	nntp://digitalmars.com/digitalmars.D/14115

module dstress.run.this_03;

class Node{
	static Node[Node] nodes;
	
	this(){
		nodes[this]=this;
	}
	
	~this(){
		nodes.remove(this);
	}
}

int main(){
	assert(Node.nodes.length==0);
	Node n = new Node();
	assert(Node.nodes.length==1);
	return 0;
}