view nocompile/goto_04.d @ 360:e38919011244

dif. fixes 3
author thomask
date Fri, 25 Mar 2005 05:22:21 +0000
parents 6067056cad0c
children
line wrap: on
line source

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

// __DSTRESS_ELINE__ 13

module dstress.nocompile.goto_04;

int main(){
	int i=1;
	switch(i){
		case 1:
			goto case 2;
		default:
			assert(0);
	}
}