view run/goto_09.d @ 186:c18d6e8a712e

extended goto tests
author thomask
date Thu, 09 Dec 2004 06:54:59 +0000
parents
children
line wrap: on
line source

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

module dstress.run.goto_09;

int main(){
	if(0){
label:
		return 0;
	}else{
		goto label;
	}
	assert(0);
}