annotate run/o/opCmp_05_B.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 9dcac8d4e97f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
627
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
1 // $HeadURL$
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
2 // $Date$
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
3 // $Author$
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
4
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
5 // @author@ David L. Davis <SpottedTiger@yahoo.com>
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
6 // @date@ 2005-08-10
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 1091
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=4752
627
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
8 // @desc@ Negative numbers are treated as Positive in compares.
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
9
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
10
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
11 module dstress.run.o.opCmp_05_B;
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
12
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
13 int main(){
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
14 if(-128<0){
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
15 assert(1);
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
16 }else{
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
17 assert(0);
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
18 }
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
19
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
20 if(-128<=0){
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
21 assert(1);
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
22 }else{
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
23 assert(0);
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
24 }
1091
9dcac8d4e97f post DMD-0.163 review
thomask
parents: 627
diff changeset
25
627
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
26 if(-128>0){
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
27 assert(0);
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
28 }
1091
9dcac8d4e97f post DMD-0.163 review
thomask
parents: 627
diff changeset
29
627
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
30 if(-128>=0){
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
31 assert(0);
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
32 }
1091
9dcac8d4e97f post DMD-0.163 review
thomask
parents: 627
diff changeset
33
627
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
34 return 0;
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
35 }