view run/creal_21.d @ 399:8f24d8aa2308

ifloat -> cfloat Stewart Gordon <smjg_1998@yahoo.com> 2005-04-07 news:d33938$212r$1@digitaldaemon.com
author thomask
date Thu, 07 Apr 2005 13:40:58 +0000
parents 70b2268df736
children
line wrap: on
line source

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

// @author@	Thomas Kuehne <thomas-dloop@kuehne.THISISSPAM.cn>
// @date@	2005-04-06
// @uri@	news:k8udi2-qbi.ln1@lnews.kuehne.cn

module dstress.run.creal_21;

int main(){
	creal c = 2.7L;
	assert(c.re==2.7L);
	assert(c.im==0.0L);
	return 0;
}