view test/union6.d @ 224:116cc012409b trunk

[svn r240] do not crash on zero length constraints string
author ChristianK
date Fri, 06 Jun 2008 22:04:41 +0200
parents 2332006e1fa4
children
line wrap: on
line source

module union6;

pragma(LLVM_internal, "notypeinfo") {
    struct S
    {
        byte a;
        byte b;
    }
    union U
    {
        byte a;
        byte b;
        S c;
    }
}

void main()
{
    U u;
    auto a = u.c.b;
    //auto c = u.s.l;
}