view run/this_03.d @ 1619:bebc7472a832

Fix #7.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 18:55:30 +0100
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;
}