view run/c/creal_36_B.d @ 1272:ecd6e898948d

fixed missing open paren (issue #624, http://d.puremagic.com/issues/show_bug.cgi?id=624)
author thomask
date Sat, 23 Dec 2006 14:25:02 +0000
parents 23b89cbbe105
children e6887749b811
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;
}