view test/static_ctor.d @ 257:4234b014a4f2 trunk

[svn r275] improved makewebstatistics
author ChristianK
date Thu, 12 Jun 2008 18:40:47 +0200
parents c53b6e3fe49a
children d9d5d59873d8
line wrap: on
line source

static this()
{
    printf("static this\n");
}

static ~this()
{
    printf("static ~this\n");
}

void main()
{
    printf("main\n");
}