view test/with1.d @ 47:6d60e6049c4e trunk

[svn r51] dynamic array members in struct literals was broken
author lindquist
date Fri, 19 Oct 2007 17:00:35 +0200
parents 8b0e809563df
children c44e6a711885
line wrap: on
line source

module with1;
struct S
{
    int i;
    float f;
}
void main()
{
    S s;
    with(s)
    {
        i = 0;
        f = 3.4;
    }
}