view run/o/opDiv_10_C.d @ 523:a0ba0562feac

opDiv( 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:22:15 +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.opDiv_10_C;

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