annotate run/b/bug_cgcs_353_M2.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents a98a62f7a33e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
588
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
1 // $HeadURL$
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
2 // $Date$
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
3 // $Author$
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
4
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
5 // @author@ Florian Sonnenberger <nairolf@online.de>
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
6 // @date@ 2005-06-20
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 588
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=4377
588
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
8 // @desc@ internal error: ..\ztc\cgcs.c 353
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
9
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
10 module dstress.run.b.bug_cgcs_353_M2;
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
11
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
12 int main(){
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
13 idouble[] arr;
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
14 arr.length=1;
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
15 arr[0]=2.0i;
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
16
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
17 arr = arr ~ (1.0i);
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
18
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
19 assert(arr[0]==2.0i);
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
20 assert(arr[1]==1.0i);
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
21
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
22 return 0;
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
23 }