view run/creal_15.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents 5511f9277078
children 56d43974b468
line wrap: on
line source

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

module dstress.run.creal_15;

int main(){
	creal a = creal.nan;
	creal b;
	byte* X = cast(byte*)(cast(void*)&a);

	b = real.nan + ireal.nan;
	byte* Y = cast(byte*)(cast(void*)&b);

	for(size_t i=0; i<a.sizeof; i++){
		assert(X[i]==Y[i]);
	}

	real c= real.nan;
	real d=a.re;
	X = cast(byte*)(cast(void*)&c);
	Y = cast(byte*)(cast(void*)&d);

	for(size_t i=0; i<c.sizeof; i++){
		assert(X[i]==Y[i]);
	}

	d=a.im;
	X = cast(byte*)(cast(void*)&c);
	Y = cast(byte*)(cast(void*)&d);
	for(size_t i=0; i<c.sizeof; i++){
		assert(X[i]==Y[i]);
	}
	
	return 0;
}