view compile/c/cfloat_11_C.d @ 1321:e6887749b811

cleaned up remaining puremagic @uri@s
author thomask
date Sun, 31 Dec 2006 20:00:02 +0000
parents 23b89cbbe105
children
line wrap: on
line source

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

// @author@	Thomas Kühne <thomas-doop@kuehne.cn>
// @date@	2006-11-19
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=575
// @desc@	[Issue 575] New: wrong evaluation of (creal * 2 + 1i)

module dstress.compile.c.cfloat_11_C;

template foo(cfloat a){
	const cfloat foo = a * 2.0f + 1.0fi;
}

static assert(foo!(1.0f + 2.0fi) == 2.0f + 5.0fi);