view norun/switch_18.d @ 1568:afe5f4bc8f9c

[Issue 1595] Multiple typedefs of Exception should be treated as different types. <pop.atry@gmail.com> 2007-10-07 http://d.puremagic.com/issues/show_bug.cgi?id=1595
author thomask
date Fri, 19 Oct 2007 17:07:50 +0000
parents 9a121126b077
children
line wrap: on
line source

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

// __DSTRESS_TORTURE_BLOCK__ -release
// __DSTRESS_ELINE__ 13

module dstress.norun.switch_18;

int i;

static this(){
	switch(i){
		case 1: i++; break; // dummy
		
	}
}

int main(){
	return 0;
}