view run/c/creal_36_B.d @ 1237:23b89cbbe105

[Issue 575] New: wrong evaluation of (creal * 2 + 1i) Thomas K?hne <thomas-doop@kuehne.cn> 2006-11-19 news:bug-575-31@http.d.puremagic.com/issues/
author thomask
date Sat, 25 Nov 2006 17:52:58 +0000
parents
children ecd6e898948d
line wrap: on
line source

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

// @author@	Thomas Kühne <thomas-doop@kuehne.cn>
// @date@	2006-11-19
// @uri@	news:bug-575-31@http.d.puremagic.com/issues/
// @desc@	[Issue 575] New: wrong evaluation of (creal * 2 + 1i)

module dstress.run.c.creal_36_B;

int main(){
	if(1.0L + 2.0Li) * 2.0L + 1.0Li != 2.0L + 5.0Li){
		assert(0);
	}
	return 0;
}