annotate run/module_04.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents d3a3e0c251d8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
252
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
1 // $HeadURL$
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
2 // $Date$
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
3 // $Author$
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
4
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
5 // @author@ Thomas Kuehne <thomas@kuehne.thisisspam.cn>
283
916d1cb5d890 updated meta info for module tests
thomask
parents: 252
diff changeset
6 // @date@ 2005-02-12
916d1cb5d890 updated meta info for module tests
thomask
parents: 252
diff changeset
7 // @uri@ news:cujja4$5ri$1@digitaldaemon.com
1384
d3a3e0c251d8 nntp: -> http:
thomask
parents: 1383
diff changeset
8 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=2952
252
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
9
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
10 // __DSTRESS_DFLAGS__ -I.
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
11
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
12 /*module dstress.run.module_04;*/
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
13
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
14 int i;
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
15
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
16 int main(){
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
17 assert(run.module_04.i==0);
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
18 run.module_04.i++;
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
19 assert(run.module_04.i==1);
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
20 return 0;
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
21 }
9241d98c43f9 extended module tests
thomask
parents:
diff changeset
22