view tests/mini/union6.d @ 1198:f48500f9350c

Ported script to Tango
author larsivi@larsivi-gutsy
date Tue, 07 Apr 2009 18:37:19 +0200
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;
}