view run/s/scope_13_A.d @ 1050:7f312e8ff5b6

<ericanderton@yahoo.com> 2006-06-16 news:bug-199-3@http.d.puremagic.com/issues/
author thomask
date Thu, 29 Jun 2006 13:24:51 +0000
parents
children daef239f37cf
line wrap: on
line source

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

// @author@	<ericanderton@yahoo.com>
// @date@	2006-06-16
// @uri@	news:bug-199-3@http.d.puremagic.com/issues/

module dstress.run.s.scope_13_A;

int main(){
	int i;
	
label: 
	{
		scope(exit) i++;
		i=3;
	}

	if(i != 4){
		assert(0);
	}


	return 0;
}