annotate nocompile/private_import_01.d @ 677:c566f5dba4b4

fixed "private" tests
author thomask
date Tue, 20 Sep 2005 09:01:37 +0000
parents f87ba6507260
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 }