view test/moduleinfo1.d @ 128:e5fe8521bbfa trunk

[svn r132] Added some tests. some will fail at the moment.
author lindquist
date Fri, 30 Nov 2007 17:12:08 +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()
{
}