annotate nocompile/private_import_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 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
90
5a0c46ed4e4a simplified private_import (step 1/2)
thomask
parents:
diff changeset
5 module dstress.nocompile.private_import_01;
5a0c46ed4e4a simplified private_import (step 1/2)
thomask
parents:
diff changeset
6
677
c566f5dba4b4 fixed "private" tests
thomask
parents: 374
diff changeset
7 import addon.private_import_A;
90
5a0c46ed4e4a simplified private_import (step 1/2)
thomask
parents:
diff changeset
8
101
d0492a3bb82b fixed private_import tests
thomask
parents: 93
diff changeset
9 class Foo2 : Bar {
d0492a3bb82b fixed private_import tests
thomask
parents: 93
diff changeset
10
d0492a3bb82b fixed private_import tests
thomask
parents: 93
diff changeset
11 }
d0492a3bb82b fixed private_import tests
thomask
parents: 93
diff changeset
12
90
5a0c46ed4e4a simplified private_import (step 1/2)
thomask
parents:
diff changeset
13 int main(){
5a0c46ed4e4a simplified private_import (step 1/2)
thomask
parents:
diff changeset
14 return 0;
5a0c46ed4e4a simplified private_import (step 1/2)
thomask
parents:
diff changeset
15 }