view run/o/opDiv_09_B.d @ 1550:f46f0b6ed2d1

[Issue 627] Concatenation of strings to string arrays with ~ corrupts data Matti Niemenmaa <deewiant@gmail.com> 2006-12-02 http://d.puremagic.com/issues/show_bug.cgi?id=627
author thomask
date Mon, 23 Jul 2007 18:42:04 +0000
parents b8c0195059d9
children 56d43974b468
line wrap: on
line source

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

// @author@	David Friedman <d3rdclsmail_a_@_t_earthlink_d_._t_net>
// @date@	2005-05-03
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3881

module dstress.run.o.opDiv_09_B;

int main(){
	real a = -1.0Li / 0.0Li;

	ireal b = -1.0Li;
	ireal c = 0.0Li;
	real d;

	byte* X = cast(byte*) (cast(void*) &a);

	d = b/c;
	byte* Y = cast(byte*) (cast(void*) &d);

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

	return 0;
}