view run/o/opMul_07_F.d @ 524:9b87306a1797

opMul( ifloat, ifloat ) Thomas Kuehne <thomas-dloop@kuehne.thisisspam.cn> 2005-05-11 news:rit129-at3.ln1@lnews.kuehne.cn
author thomask
date Wed, 11 May 2005 17:58:51 +0000
parents
children
line wrap: on
line source

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

// @author@	Thomas Kuehne <thomas-dloop@kuehne.thisisspam.cn>
// @date@	2005-05-11
// @uri@	news:rit129-at3.ln1@lnews.kuehne.cn

module dstress.run.o.opMul_05_F;

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