view run/auto_06.d @ 1559:ec5e144583ea

D1 -> D2 : 1/N
author thomask
date Sun, 19 Aug 2007 19:11:54 +0000
parents c67acdbaf88e
children
line wrap: on
line source

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

module dstress.run.auto_06;

int status;

auto class A{
	int cond;

	this(int cond){
		this.cond=cond;
	}

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

void test(){
	auto A a = new A(-1);
	auto A b = new A(0);
}

int main(){
	test();
	
	if(status==-2){
		return 0;
	}
}