view run/b/bug_cod1_2433_E.d @ 529:924f45bc62e9

post DMD-0.123 review [1/n]
author thomask
date Thu, 12 May 2005 18:13:21 +0000
parents 724f0f0afc01
children 7e8e5013a030
line wrap: on
line source

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

// @author@	Burton Radons <burton-radons@smocky.com>
// @date@	2005-05-12
// @uri@	news:d5mhd7$2t84$1@digitaldaemon.com

module dstress.run.b.bug_cod1_2433_E;

ireal test(){
	return 1.0Li;
}

int main(){
	creal c = 0.0L+0.0Li;
	c = c + test;
	assert(c.re==0.0L);
	assert(c.im==1.0L);
	return 0;
}