view run/c/cfloat_04_A.d @ 1600:6d193e241564

Allow for tango math in creal tests.
author Christian Kamm <kamm incasoftware de>
date Sun, 04 Jan 2009 22:25:02 +0100
parents b8c0195059d9
children
line wrap: on
line source

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

// @author@	Tiago Gasiba <tiago.gasiba@gmail.com>
// @date@	2005-11-07
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5343

module dstress.run.c.cfloat_04_A;

void foo(cfloat[] data){
	data[0] -= data[0].im;
}

int main(){
	cfloat[1] d;
	d[0] = 1.0f + 2.0fi;

	foo(d);

	if(d[0].im != 2.0f){
		assert(0);
	}
	if(d[0].re != -1.0f){
		assert(0);
	}

	return 0;
}