view tests/mini/bug5.d @ 1109:97d80437cb80

Fix field access from inline asm. See tests/mini/asm10.d
author Frits van Bommel <fvbommel wxs.nl>
date Thu, 12 Mar 2009 23:48:43 +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()
{
}