I have 3 reference classes on R, let call them A,B,C. C inherits fields from both A and B but putting callSuper() in the initialize method of C this function call only A's initialize method and fields inherited from B are not initialized.
How could I do in order to initialize every field in C??