view test/static_ctor.d @ 214:629cfc1e7b77 trunk

[svn r230] Added vararg3 sample tangotest.
author lindquist
date Fri, 30 May 2008 19:32:56 +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");
}