view run/this_03.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents 94e2e6e8ec70
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;
}