view test/moduleinfo1.d @ 147:0636f6269dfd trunk

[svn r152] Relates to ticket #34. Always emit class definition if it is a template instance. Linkage still needs to be fixed.
author ChristianK
date Thu, 13 Mar 2008 18:37:52 +0100
parents fd7ad91fd713
children d9d5d59873d8
line wrap: on
line source

module moduleinfo1;

// has static this
import std.outofmemory;

static this()
{
}

static this()
{
}

static ~this()
{
}

static ~this()
{
}

unittest
{
}

class C
{
}

class D : C
{
}

void main()
{
}