view run/s/static_if_07_B.d @ 1118:6fa59f24470f

[Issue 305] version and static if blocks introduce new scope for 'scope' statement Sean Kelly <sean@f4.ca> 2006-08-23 news:bug-305-3@http.d.puremagic.com/issues/
author thomask
date Fri, 25 Aug 2006 11:42:59 +0000
parents
children daef239f37cf
line wrap: on
line source

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

// @author@	Sean Kelly <sean@f4.ca>
// @date@	2006-08-23
// @uri@	news:bug-305-3@http.d.puremagic.com/issues/
// @desc@	[Issue 305] New: version and static if blocks introduce new scope for 'scope' statement

module dstress.run.s.static_if_07_B;

int status;

void foo(){
	static if(true){
		scope(success) status++;
	}
	static if(true){
		scope(exit) status *= 2;
	}
}

int main(){
	status = 1;
	foo();
	if(status != 3){
		assert(0);
	}

	return 0;
}