view run/s/scope_06_L.d @ 1062:7360e428ad73

pre 0.162 review
author thomask
date Sat, 01 Jul 2006 23:08:00 +0000
parents c2931e457792
children
line wrap: on
line source

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

module dstress.run.s.scope_06_L;

class X{
}

int main(){
	int a;
	
	try{
		scope(failure){
			if(a != 11){
				assert(0);
			}

			a++;
		}

		scope(exit){
			if(a != 10){
				assert(0);
			}

			a++;
		}

		scope(success){
			assert(0);
		}

		
		if(a!=0){
			assert(0);
		}else{
			a = 10;
		}

		throw new X();
	}catch(X x){
		if(a != 12){
			assert(0);
		}

		return 0;
	}

	assert(0);
}