view run/t/template_33_G.d @ 1513:45c339264b57

[Issue 1125] Segfault using tuple in asm code, when size not specified Don Clugston <clugdbug@yahoo.com.au> 2007-04-11 http://d.puremagic.com/issues/show_bug.cgi?id=1125
author thomask
date Mon, 23 Apr 2007 18:09:16 +0000
parents 5511f9277078
children
line wrap: on
line source

// $HeadUR$
// $Date$
// $Author$

// @author@	Dave <Dave_member@pathlink.com>
// @date@	2006-03-18
// @uri@	news:dvgq34$22hv$1@digitaldaemon.com

module dstress.run.t.template_33_G;

template sum(cfloat x){
	static if (x.re <= 1.0f){
		const cfloat sum = x;
	}else{
		const cfloat sum = x + sum!(x - 1.0f);
	}
}

int main(){
	cfloat x = sum!(1.0f + 0.0fi);

	if(x != 1.0f + 0.0fi){
		assert(0);
	}

	return 0;
}