1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
class Foo {
public static int factory_called = 0;
public static Foo factory () {
factory_called++;
return new Foo ();
}
public static int method_called = 0;
public void method () {
method_called++;
}
}
void test () {
var foo = new Foo ();
with (foo)
method ();
with (new Foo ())
method ();
with (Foo.factory ()) {
method ();
method ();
}
Foo[] arr = {foo, foo};
with (arr[0]) {
method ();
}
assert (Foo.method_called == 5);
assert (Foo.factory_called == 1);
}
void main () {
test ();
}
|