view test/with1.d @ 87:25d4fcce53f4 trunk

[svn r91] fixed some minor mistakes
author lindquist
date Sat, 03 Nov 2007 14:48:33 +0100
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;
    }
}