view run/t/template_33_E.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_E;

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

int main(){
	cdouble x = sum!(2.0 + 0.0i);

	if(x != 3.0 + 0.0i){
		assert(0);
	}

	return 0;
}