Files
ldc/test/moduleinfo1.d
Tomas Lindquist Olsen cb37aab93b [svn r120] ModuleInfo implementation is now almost complete.
Fixed some nasty static array-initializer bugs.
Fixed bug in DtoArrayLen and DtoArrayPtr for full slices of static arrays.
2007-11-25 18:55:52 +01:00

37 lines
203 B
D

module moduleinfo1;
// has static this
import std.outofmemory;
static this()
{
}
static this()
{
}
static ~this()
{
}
static ~this()
{
}
unittest
{
}
class C
{
}
class D : C
{
}
void main()
{
}