annotate nocompile/super_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 aaf6f2e639e9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
332
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
1 // $HeadURL$
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
2 // $Date$
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
3 // $Base$
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
4
980
aaf6f2e639e9 repository review
thomask
parents: 756
diff changeset
5 // __DSTRESS_ELINE__ 15
374
f87ba6507260 added missing meta-data
thomask
parents: 332
diff changeset
6
332
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
7 module dstress.nocompile.super_06;
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
8
392
9faddc0de2ba 1) fixed meta data
thomask
parents: 374
diff changeset
9 class Parent{
9faddc0de2ba 1) fixed meta data
thomask
parents: 374
diff changeset
10 this(int i){
332
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
11 }
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
12 }
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
13
392
9faddc0de2ba 1) fixed meta data
thomask
parents: 374
diff changeset
14 class Child : Parent{
9faddc0de2ba 1) fixed meta data
thomask
parents: 374
diff changeset
15 this(char[] c){
9faddc0de2ba 1) fixed meta data
thomask
parents: 374
diff changeset
16 }
332
7b78583d1f80 Object has no ctor
thomask
parents:
diff changeset
17 }