view run/destructor_01.d @ 1622:d402aa53926c

Add test for bug 3092 written by Manuel K?nig
author Leandro Lucarella <llucax@gmail.com>
date Tue, 19 Oct 2010 19:18:23 -0300
parents 7b7967dd4203
children
line wrap: on
line source

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

// @author@	David Friedman <d3rdclsmail@earthlink.net>
// @date@	2004-05-01
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=51

module dstress.run.destructor_01;

int status;

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

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

class ClassB : ClassA {}

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

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