annotate nocompile/private_import_02.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 c566f5dba4b4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
374
f87ba6507260 added missing meta-data
thomask
parents: 218
diff changeset
1 // $HeadURL$
f87ba6507260 added missing meta-data
thomask
parents: 218
diff changeset
2 // $Date$
f87ba6507260 added missing meta-data
thomask
parents: 218
diff changeset
3 // $Author$
f87ba6507260 added missing meta-data
thomask
parents: 218
diff changeset
4
218
cb22f2d42678 circumvent import bug
thomask
parents: 101
diff changeset
5 // __DSTRESS_DFLAGS__ addon/private_import_A.d addon/private_import_B.d
90
5a0c46ed4e4a simplified private_import (step 1/2)
thomask
parents:
diff changeset
6
101
d0492a3bb82b fixed private_import tests
thomask
parents: 91
diff changeset
7 module dstress.nocompile.private_import_01;
90
5a0c46ed4e4a simplified private_import (step 1/2)
thomask
parents:
diff changeset
8
218
cb22f2d42678 circumvent import bug
thomask
parents: 101
diff changeset
9 import addon.private_import_B;
90
5a0c46ed4e4a simplified private_import (step 1/2)
thomask
parents:
diff changeset
10
677
c566f5dba4b4 fixed "private" tests
thomask
parents: 374
diff changeset
11 class Foo2 : FooA {
101
d0492a3bb82b fixed private_import tests
thomask
parents: 91
diff changeset
12
d0492a3bb82b fixed private_import tests
thomask
parents: 91
diff changeset
13 }
d0492a3bb82b fixed private_import tests
thomask
parents: 91
diff changeset
14
90
5a0c46ed4e4a simplified private_import (step 1/2)
thomask
parents:
diff changeset
15 int main(){
5a0c46ed4e4a simplified private_import (step 1/2)
thomask
parents:
diff changeset
16 return 0;
5a0c46ed4e4a simplified private_import (step 1/2)
thomask
parents:
diff changeset
17 }