view run/s/scope_14_A.d @ 1320:daef239f37cf

sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:59:08 +0000
parents e293e1b6aaaa
children
line wrap: on
line source

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

// @author@	<thomas-dloop@kuehne.cn>
// @date@	2006-07-02
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=235

module dstress.run.s.scope_14_A;

int status;

void foo(bool b){
	if(b){
		goto label;
	}

	status = 2;
	scope(exit){
		status--;
	}

label:
	{
	}
}

int main(char[][] args){
	foo(args.length > 1000);

	if(status != 1){
		assert(0);
	}

	return 0;
}