view run/s/switch_22_D.d @ 1599:d37b19f7e8bb

Move run/c/case_01 to nocompile.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 17:28:31 +0200
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_D;

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

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

	return 0;
}