view run/t/template_33_G.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 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;
}