mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
Fixed some nasty static array-initializer bugs. Fixed bug in DtoArrayLen and DtoArrayPtr for full slices of static arrays.
37 lines
203 B
D
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()
|
|
{
|
|
}
|