view run/destructor_01.d @ 1:3414705c41ac

removed CVS header
author thomask
date Sun, 26 Sep 2004 12:06:09 +0000
parents 3269e4627918
children a33ad7189d21
line wrap: on
line source


// @author@	David Friedman <d3rdclsmail@earthlink.net>
// @date@	2004-05-01
// @uri@	news://c6v105$1flg$1@digitaldaemon.com

int status;

class ClassA{
	this(){
		status++;
		assert(status==1);
	}

	~this(){
		status--;
		assert(status==0);
	}
}

class ClassB : ClassA {}

void test(){
	auto ClassB b = new ClassB();
	
}

int main(){
	test();
	return 0;
}