view run/o/opDiv_10_A.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_A;

int main(){
	ifloat a = 4.0fi / 2.0fi;
	assert(a==2.0fi);
	return 0;
}