view run/o/opMul_03.d @ 1535:20d8ee6523e1

updated to DMD-1.013
author thomask
date Mon, 07 May 2007 05:19:57 +0000
parents 9e0847cf535a
children
line wrap: on
line source

// $HeadUR$
// $Date$
// $Author$

module dstress.run.o.opMul_03;

int main(){
	ireal i=2.0Li;
	i = i * 4.0Li;
	assert(i==8.0Li);
	return 0;
}