view test/with1.d @ 60:66a6841bbe43 trunk

[svn r64] ...
author lindquist
date Thu, 25 Oct 2007 09:16:05 +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;
    }
}