view run/scope_02.d @ 1615:8d5c55d163fd

Fix some outdated tests that used auto to mean scope.
author Christian Kamm <kamm incasoftware de>
date Sun, 12 Jul 2009 16:44:52 +0200
parents run/auto_02.d@ec5e144583ea
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;
	}
}