view test/classinfo4.d @ 111:a7ae554ce4f4 trunk

[svn r115] Implemented the ClassInfo.defaultConstructor member.
author lindquist
date Thu, 22 Nov 2007 21:17:54 +0100
parents
children 368547b1cbe6
line wrap: on
line source

module classinfo4;

class C
{
}

class D
{
    this()
    {
    }
}

void main()
{
    assert(C.classinfo.defaultConstructor is null);
    assert(D.classinfo.defaultConstructor !is null);
}