view run/s/scope_14_A.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents daef239f37cf
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;
}