view test/bug5.d @ 192:67ed21bf16af trunk

[svn r208] const init interface vtbls to nonzero values only for nonabstract classes
author ChristianK
date Mon, 12 May 2008 18:22:55 +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()
{
}