annotate run/o/opDiv_05.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 9dcac8d4e97f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
528
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
1 // $HeadUR$
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
2 // $Date$
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
3 // $Author$
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
4
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
5 module dstress.run.o.opDiv_05;
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
6
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
7 int main(){
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
8 idouble i=8.0fi;
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
9 i = i / 4.0f;
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
10
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
11 assert(i==2.0fi);
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
12
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
13 return 0;
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
14 }