This commit is contained in:
Tomas Lindquist Olsen
2008-08-13 15:43:34 +02:00
14 changed files with 75 additions and 38 deletions

View File

@@ -1,11 +0,0 @@
module imports_1of2;
import imports_2of2;
void main()
{
assert(func() == 42);
S s;
s.l = 32;
assert(s.l == 32);
}

View File

@@ -1,11 +0,0 @@
module imports_2of2;
int func()
{
return 42;
}
struct S
{
long l;
}