view run/break_04.d @ 1588:d20691fd37af

Move template_61_C from nocompile to run.
author Christian Kamm <kamm incasoftware de>
date Mon, 25 Aug 2008 21:56:28 +0200
parents e0bcd344aa2b
children
line wrap: on
line source

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

module dstress.run.break_04;

int main(){
	int i=1;
outer:	switch(i){
		case 1:
inner:			switch(i){
				case 1:
					break outer;
				default:
					assert(0);
			}
		default:
			assert(0);
	}
	return 0;
}