annotate run/module_01.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
parents d3a3e0c251d8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
249
17ad450e2969 added module lookup bug
thomask
parents:
diff changeset
1 // $HeadURL$
17ad450e2969 added module lookup bug
thomask
parents:
diff changeset
2 // $Date$
17ad450e2969 added module lookup bug
thomask
parents:
diff changeset
3 // $Author$
17ad450e2969 added module lookup bug
thomask
parents:
diff changeset
4
17ad450e2969 added module lookup bug
thomask
parents:
diff changeset
5 // @author@ Thomas Kuehne <thomas@kuehne.thisisspam.cn>
283
916d1cb5d890 updated meta info for module tests
thomask
parents: 278
diff changeset
6 // @date@ 2005-02-12
916d1cb5d890 updated meta info for module tests
thomask
parents: 278
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
249
17ad450e2969 added module lookup bug
thomask
parents:
diff changeset
9
17ad450e2969 added module lookup bug
thomask
parents:
diff changeset
10 module dstress.run.module_01;
17ad450e2969 added module lookup bug
thomask
parents:
diff changeset
11
17ad450e2969 added module lookup bug
thomask
parents:
diff changeset
12 int i;
17ad450e2969 added module lookup bug
thomask
parents:
diff changeset
13
17ad450e2969 added module lookup bug
thomask
parents:
diff changeset
14 int main(){
17ad450e2969 added module lookup bug
thomask
parents:
diff changeset
15 assert(dstress.run.module_01.i==0);
278
ff8070672e37 fixed name typo
thomask
parents: 249
diff changeset
16 dstress.run.module_01.i++;
249
17ad450e2969 added module lookup bug
thomask
parents:
diff changeset
17 assert(dstress.run.module_01.i==1);
17ad450e2969 added module lookup bug
thomask
parents:
diff changeset
18 return 0;
17ad450e2969 added module lookup bug
thomask
parents:
diff changeset
19 }
17ad450e2969 added module lookup bug
thomask
parents:
diff changeset
20