view run/o/opMulAssign_14.d @ 1086:7e8e5013a030

gdc-0.19 review
author thomask
date Tue, 18 Jul 2006 22:51:49 +0000
parents 9e0847cf535a
children
line wrap: on
line source

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

module dstress.run.o.opMulAssign_14;

int main(){
	ireal i=2.0Li;
	i *= 4.0L;

	if(i != 8.0Li){
		assert(0);
	}

	return 0;
}