view run/auto_06.d @ 1330:f3f715978184

Georg Wrede <georg@iki.fi> 2007-01-07 mail:45A120F5.1050108@iki.fi
author thomask
date Sat, 13 Jan 2007 10:33:49 +0000
parents c67acdbaf88e
children ec5e144583ea
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(){
		assert(status==cond);
		status--;
	}
}

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

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