view run/scope_02.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
parents 8d5c55d163fd
children
line wrap: on
line source

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

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

module dstress.run.scope_02;

int status;

scope class ScopeClass{
	void bad(){
		throw new Exception("error msg");
	}

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

void test(){
	try{
		scope ScopeClass ac = new ScopeClass();
		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;
	}
}