view run/auto_02.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$

// @author@	Sean Kelly <sean@f4.ca>
// @date@	2004-09-11

module dstress.run.auto_02;

int status;

auto class AutoClass{
	void bad(){
		throw new Exception("error msg");
	}

	~this(){
		if(status == 0){
			status--;
		}else{
			status = -100;
		}
	}
}

void test(){
	try{
		auto AutoClass ac = new AutoClass();
		ac.bad();
	}catch{
		if(status == -1){
			status = 20;
		}
	}

	if(status != 20){
		throw new Exception("dtor not called");
	}
}

int main(){
	assert(status == 0);

	test();
	
	if(status == 20){
		return 0;
	}
}