view run/goto_08.d @ 1330:f3f715978184

Georg Wrede <georg@iki.fi> 2007-01-07 mail:45A120F5.1050108@iki.fi
author thomask
date Sat, 13 Jan 2007 10:33:49 +0000
parents c18d6e8a712e
children
line wrap: on
line source

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

module dstress.run.goto_08;

int main(char[][] arg){

	assert(arg.length==1);

	if(arg.length!=1){
label:
		return 0;
	}else{
		goto label;
	}
	assert(0);
}