view run/cfloat_01.d @ 1330:f3f715978184

Georg Wrede <georg@iki.fi> 2007-01-07 mail:45A120F5.1050108@iki.fi
author thomask
date Sat, 13 Jan 2007 10:33:49 +0000
parents 5511f9277078
children b8c0195059d9
line wrap: on
line source

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

// @author@	Thomas Kuehne <thomas-dloop@kuehne.thisisspam.cn>
// @date@	2005-04-26
// @uri@	news:pln1k2-5f3.ln1@lnews.kuehne.cn

module dstress.run.cfloat_01;

int main(){
	cfloat c = 27Fi + 0.0F;
	assert(c.re==0.0F);
	assert(c.im==27.0F);
	return 0;
}