view tests/mini/structs4.d @ 772:cd7da2ba14d1

Fix bug reported by downs. Related to delegate types within tuple template parameters.
author Christian Kamm <kamm incasoftware de>
date Tue, 18 Nov 2008 17:14:57 +0100
parents 1bb99290e03a
children
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);}
}