view run/this_03.d @ 1576:b3e16c86558e

[Issue 1398] New: GDC doesn't generate correct code <mariusmuja@gmail.com> 2007-08-04 http://d.puremagic.com/issues/show_bug.cgi?id=1398
author thomask
date Thu, 21 Feb 2008 15:20:08 +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;
}