view test/static_ctor.d @ 202:56e0c5b1d428 trunk

[svn r218] Added test results for [217]
author lindquist
date Mon, 12 May 2008 23:49:07 +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");
}