annotate run/b/bug_cgcs_353_L2.d @ 588:a98a62f7a33e

Internal error: ../ztc/cgcs.c 353 Florian Sonnenberger <nairolf@online.de> 2005-06-20 news:d9738b$1bgr$3@digitaldaemon.com
author thomask
date Wed, 22 Jun 2005 11:01:51 +0000
parents
children b8c0195059d9
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
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
7 // @uri@ news:d9738b$1bgr$3@digitaldaemon.com
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_L2;
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 cdouble[] 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+3.0;
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+5.0);
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+3.0);
a98a62f7a33e Internal error: ../ztc/cgcs.c 353
thomask
parents:
diff changeset
20 assert(arr[1]==1.0i+5.0);
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 }