annotate run/b/bug_type_308_A.d @ 1319:81222734adf3

sed'ed replacement of new:...http.d.puremagic.co... with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:58:06 +0000
parents 03b5056496f1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
947
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
1 // $HeadURL$
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
2 // $Date$
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
3 // $Author$
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
4
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
5 // @author@ <clugdbug@yahoo.com.au>
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
6 // @date@ 2006-04-04
1319
81222734adf3 sed'ed replacement of new:...http.d.puremagic.co... with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1089
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=84
947
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
8
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
9 module dstress.run.b.bug_type_308_A;
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
10
1089
03b5056496f1 pre DMD-0.163 review
thomask
parents: 947
diff changeset
11 int main() {
947
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
12 int [3][3] x;
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
13 x[1][1 .. 3] = 1;
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
14
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
15 if(x[0][0] != 0){
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
16 assert(0);
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
17 }
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
18 if(x[0][1] != 0){
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
19 assert(0);
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
20 }
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
21 if(x[0][2] != 0){
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
22 assert(0);
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
23 }
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
24
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
25 if(x[1][0] != 0){
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
26 assert(0);
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
27 }
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
28 if(x[1][1] != 1){
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
29 assert(0);
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
30 }
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
31 if(x[1][2] != 1){
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
32 assert(0);
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
33 }
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
34
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
35 if(x[2][0] != 0){
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
36 assert(0);
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
37 }
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
38 if(x[2][1] != 0){
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
39 assert(0);
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
40 }
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
41 if(x[2][2] != 0){
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
42 assert(0);
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
43 }
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
44
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
45 return 0;
4b7db0846641 <clugdbug@yahoo.com.au>
thomask
parents:
diff changeset
46 }