annotate run/o/opMulAssign_13.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 7e8e5013a030
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.opMulAssign_13;
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=2.0i;
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
9 i *= 4.0;
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
10
9e0847cf535a pre DMD-0.123 review
thomask
parents:
diff changeset
11 assert(i==8.0i);
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 }