view run/t/template_33_E.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
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;
}