view test/bug5.d @ 60:66a6841bbe43 trunk

[svn r64] ...
author lindquist
date Thu, 25 Oct 2007 09:16:05 +0200
parents 2841234d2aea
children
line wrap: on
line source

module bug5;

struct hah {
    static hah f()
    {
        hah res;
        return res;
    }
    hah g()
    {
        return hah.init;
    }
}

void main()
{
}