view run/s/scope_18_B.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 d0ab95b04926
children
line wrap: on
line source

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

// @author@	Thomas Kühne <thomas-dloop@kuehne.cn>
// @date@	2007-01-07
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=815
// @desc@	[Issue 815] scope(exit) isn't executed when "continue" is used to continue a while-loop

module dstress.run.s.scope_18_B;

int main(){
	int[] log;
	int i = 3;

	while(i--){
		scope(success){
			log ~= 0xEE;
		}
		log ~= i;
		
		if(i % 2){
			continue;
		}
		log ~= 0xFF;
	}

	if([2, 0xFF, 0xEE, 1, 0xEE, 0, 0xFF, 0xEE] != log){
		assert(0);
	}

	return 0;
}