view run/s/switch_22_B.d @ 1604:cc724d521a34

Add note about possible issues with test case depending on switch scopes.
author Christian Kamm <kamm incasoftware de>
date Sat, 28 Mar 2009 19:17:58 +0100
parents 986983b8cf7a
children
line wrap: on
line source

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

// @author@	<BCS@pathlink.com>
// @date@	2006-06-16
// @uri@	news:e6umde$2ok0$2@digitaldaemon.com
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=729

module dstress.run.s.switch_22_B;

int main(){
	int i = 2;
	
	switch(3){
		scope(exit) i--;
		
		default:
	}

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

	return 0;
}