fixed some failing minitests (badly classified / phobos)

This commit is contained in:
Tomas Lindquist Olsen
2008-08-12 00:54:32 +02:00
parent 148534637e
commit bec4e850e4
11 changed files with 0 additions and 22 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;
}