view test/with1.d @ 238:346cba22f4b8 trunk

[svn r255] added dstress results for [254]
author ChristianK
date Sun, 08 Jun 2008 21:23:09 +0200
parents c44e6a711885
children
line wrap: on
line source

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