annotate run/constructor_06.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 6e4063f99377
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
140
a33ad7189d21 1) news:// -> news:
thomask
parents: 126
diff changeset
1 // $HeadURL$
a33ad7189d21 1) news:// -> news:
thomask
parents: 126
diff changeset
2 // $Date$
a33ad7189d21 1) news:// -> news:
thomask
parents: 126
diff changeset
3 // $Author$
126
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
4
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
5 // @author@ Sean Kelly <sean@f4.ca>
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
6 // @date@ 2004-11-11
140
a33ad7189d21 1) news:// -> news:
thomask
parents: 126
diff changeset
7 // @uri@ news:cn0g3t$o2i$1@digitaldaemon.com
1487
6e4063f99377 changed nntp: URLs to http: URLs
thomask
parents: 1383
diff changeset
8 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=2249
126
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
9
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
10 // see also dstress.addon.constructor_06_A
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
11
218
cb22f2d42678 circumvent import bug
thomask
parents: 140
diff changeset
12 // __DSTRESS_DFLAGS__ addon/constructor_06_A.d
126
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
13
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
14 module dstress.run.constructor_06;
218
cb22f2d42678 circumvent import bug
thomask
parents: 140
diff changeset
15 import addon.constructor_06_A;
126
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
16
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
17 int main(){
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
18 Derived c = new Derived();
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
19 return 0;
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
20 }