view run/o/opDiv_08_B.d @ 521:a8b982e594e7

compiletime versus runtime opDiv David Friedman <d3rdclsmail_a_@_t_earthlink_d_._t_net> 2005-05-03 news:d595il$lqr$2@digitaldaemon.com
author thomask
date Wed, 11 May 2005 17:06:05 +0000
parents
children 60bcfb2cf1e3
line wrap: on
line source

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

// @author@	David Friedman <d3rdclsmail_a_@_t_earthlink_d_._t_net>
// @date@	2005-05-03
// @uri@	news:d595il$lqr$2@digitaldaemon.com

module dstress.run.o.opDiv_08_B;

int main(){
	idouble a = -1.0i / 0.0i;

	idouble b = -1.0i;
	idouble c = 0.0i;
	idouble d;

	void* X = &a;

	d = b/c;
	void* Y = &d;

	assert((cast(int*)X)[0]==(cast(int*)Y)[0]);
	assert((cast(int*)X)[1]==(cast(int*)Y)[1]);

	return 0;
}