view run/auto_04.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents c67acdbaf88e
children 6e4063f99377
line wrap: on
line source

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

// @author@	Sean Kelly <sean@f4.ca>
// @date@	2004-09-11
// @uri@	news:chtj6t$24bm$1@digitaldaemon.com
// @uri@	nntp://digitalmars.com/digitalmars.D.bugs/1821

module dstress.run.auto_04;

int status;

auto class AutoClass{
	this(){
		assert(status==0);
		status+=2;
	}
	~this(){
		assert(status==2);
		status--;
		throw new Exception("error msg");
	}
}

void check(){
	auto AutoClass ac = new AutoClass();
	throw new Exception("check error");
}

int main(){
	assert(status==0);
	try{
		check();
	}catch{
		assert(status==1);
		status-=5;
	}
	
	if(status==-4){
		return 0;
	}
	assert(0);
}