view run/o/opMulAssign_12.d @ 528:9e0847cf535a

pre DMD-0.123 review Walter <walter@digitalmars.com> 2005-05-11 mail:00a301c5567d$489cbf20$0200a8c0@colossus
author thomask
date Thu, 12 May 2005 11:13:04 +0000
parents
children 7e8e5013a030
line wrap: on
line source

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

module dstress.run.o.opMulAssign_12;

int main(){
	ifloat i=2.0fi;
	i *= 4.0f;

	assert(i==8.0fi);

	return 0;
}