mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-25 17:13:14 +01:00
fixed some failing minitests (badly classified / phobos)
This commit is contained in:
@@ -1,11 +0,0 @@
|
||||
module imports_1of2;
|
||||
|
||||
import imports_2of2;
|
||||
|
||||
void main()
|
||||
{
|
||||
assert(func() == 42);
|
||||
S s;
|
||||
s.l = 32;
|
||||
assert(s.l == 32);
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
module imports_2of2;
|
||||
|
||||
int func()
|
||||
{
|
||||
return 42;
|
||||
}
|
||||
|
||||
struct S
|
||||
{
|
||||
long l;
|
||||
}
|
||||
Reference in New Issue
Block a user