view run/creal_13.d @ 1594:c970971fb408

Remove nocompile/a/arrayOp_01: since array ops are now supported, it is no longer valid and needs to be replaced by a set of array op tests.
author Christian Kamm <kamm incasoftware de>
date Thu, 28 Aug 2008 17:33:00 +0200
parents 5511f9277078
children 56d43974b468
line wrap: on
line source

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

module dstress.run.creal_13;

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

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

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

	real c;
	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;
}