view run/b/bug_cod1_2433_C.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 7e8e5013a030
children
line wrap: on
line source

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

// @author@	Burton Radons <burton-radons@smocky.com>
// @date@	2005-05-12
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3933

module dstress.run.b.bug_cod1_2433_C;

ireal test(){
	return 1.0Li;
}

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