view tests/mini/union6.d @ 908:6690a1468c17

Apply patch for #193. Thanks fvbommel.
author Christian Kamm <kamm incasoftware de>
date Thu, 29 Jan 2009 16:56:48 +0100
parents 44f08170f4ef
children
line wrap: on
line source

module union6;

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;
}