view test/static_ctor.d @ 3:069cf4b0ec67 trunk

[svn r7] forgot the conf file
author lindquist
date Sat, 01 Sep 2007 22:26:33 +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");
}