view test/structs4.d @ 51:61bc1b4ad3c4 trunk

[svn r55] Foreach was always generating code as if the value variable was 'ref' Other not-so-major improvements
author lindquist
date Mon, 22 Oct 2007 17:25:44 +0200
parents 25bb577878e8
children b706170e24a9
line wrap: on
line source

module structs4;

struct S{
    int a;
    T t;
}

struct T{
    int b;
    U u;
}

struct U{
    int c;
}

void main()
{
    S s;
    s.a = 3;
    s.t = T.init;
    s.t.b = 4;
    s.t.u = U.init;
    s.t.u.c = 5;
    {assert(s.t.u.c == 5);}
}