comparison run/o/opDiv_10_E.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 9b87306a1797
comparison
equal deleted inserted replaced
522:7466721ce7d1 523:a0ba0562feac
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ Thomas Kuehne <thomas-dloop@kuehne.thisisspam.cn>
6 // @date@ 2005-05-11
7 // @uri@ news:rit129-at3.ln1@lnews.kuehne.cn
8
9 module dstress.run.o.opDiv_10_E;
10
11 int main(){
12 double a = 4.0i;
13 double b = 2.0i;
14 a = a / b;
15 assert(a==2.0i);
16 return 0;
17 }