annotate addon/constructor_06_A.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 cb22f2d42678
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
a33ad7189d21 1) news:// -> news:
thomask
parents: 126
diff changeset
8 // @url@ nntp://digitalmars.com/digitalmars.D.bugs/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 dstress.run.constructor_06
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
11 // see also dstress.addon.constructor_04_A
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
12
218
cb22f2d42678 circumvent import bug
thomask
parents: 140
diff changeset
13 module addon.constructor_06_A;
126
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
14
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
15 class Base{
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
16 this(){
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
17 }
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
18 }
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
19
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
20 class Derived : Base{
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
21 private:
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
22 public:
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
23 // contrary to dstress.addon.constructor_04_A
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
24 // the constructor will be generated here, thus it's public
bd8caff749cf "silent ctor" updated by Sean
thomask
parents:
diff changeset
25 }