Is it possible to make a mixin class that calls a method in a neighbor mixin class? Like the following code, but working...
class A { void create(string a) { write(a); } }
class B { void create(string a) { ::create(a+"b"); } }
class C { inherit A; inherit B; }