I get the above error with the following code. Shouldn't that work?
arne
-----
class A { object D(string n) { return C.D(this, E(n)); } }
class B { inherit A;
array(object) operands;
void create(object ... operands) { this_program::operands = operands; } }
class C { class D { inherit B;
void foo() { operands->foo(); } } }
class E(string s) { inherit A;
void foo() { werror("foo: %s\n", s); } }
int main() { object o = A()->D("bar"); return 0; }