annotate run/o/opCmp_05_D.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 module dstress.run.o.opCmp_05_D;
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
11
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
12 int main(){
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
13 static if(128<0){
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
14 assert(0);
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
15 }
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
16
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
17 static if(128<=0){
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
18 assert(0);
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
19 }
1091
9dcac8d4e97f post DMD-0.163 review
thomask
parents: 627
diff changeset
20
627
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
21 static if(128>0){
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
22 assert(1);
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
23 }else{
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
24 assert(0);
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
25 }
1091
9dcac8d4e97f post DMD-0.163 review
thomask
parents: 627
diff changeset
26
627
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
27 static if(128>=0){
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
28 assert(1);
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
29 }else{
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
30 assert(0);
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
31 }
1091
9dcac8d4e97f post DMD-0.163 review
thomask
parents: 627
diff changeset
32
627
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
33 return 0;
caa75b9cf2f4 Negative numbers are treated as Positive in compares.
thomask
parents:
diff changeset
34 }