// Test the with statement

class test {
    public var foo = 3;
    operator {} () {
        "foo = ", foo, "\n";
    }
}

test tester {}

proc main()
{
    with (tester) {
        foo = 4
    }
}