view tests/mini/bug5.d @ 916:5f4a69a53906

Renamed Rebuild profile to match DSSS and Tango convention.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 02 Feb 2009 00:34:22 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module bug5;

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

void main()
{
}