view run/s/scope_06_E.d @ 897:c2931e457792

updated tests to DMD-0.149
author thomask
date Wed, 08 Mar 2006 14:06:40 +0000
parents
children
line wrap: on
line source

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

module dstress.run.s.scope_06_E;

int main(){
	int a;
	
	{
		scope(success){
			if(a != 10){
				assert(0);
			}

			a++;
		}

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

	if(a != 11){
		assert(0);
	}

	return 0;

}