view run/goto_10.d @ 1576:b3e16c86558e

[Issue 1398] New: GDC doesn't generate correct code <mariusmuja@gmail.com> 2007-08-04 http://d.puremagic.com/issues/show_bug.cgi?id=1398
author thomask
date Thu, 21 Feb 2008 15:20:08 +0000
parents 85ed61918ae4
children
line wrap: on
line source

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

module dstress.run.goto_10;

int status;

int test(char[][] args){
	try{
		try{
			if(args.length==1){
				goto end;
			}
		}finally{
			assert(status==0);
			status+=2;
		}

		try{
			assert(0);
		}finally{
			assert(0);
		}
	}finally{
		assert(status==2);
		status+=3;
	}
	assert(0);
	return 0;
end:
	return -1;
}

int main(char[][] args){
	assert(status == 0);
	assert(args.length == 1);
	assert(test(args) == -1);
	assert(status == 5);
	return 0;
}