view nocompile/switch_16.d @ 756:9a121126b077

major "Torture" review
author thomask
date Sat, 03 Dec 2005 22:19:07 +0000
parents f87ba6507260
children
line wrap: on
line source

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

// __DSTRESS_ELINE__ 16

module dstress.nocompile.switch_16;

int main(){
	int i;
	switch(i){
		case 3:
			return 0;
		default:
			assert(0);
		default:
			assert(0);
	}
	return 0;
}