I have two objects:
type
O1 = object of RootObj O2 = object of O1
If I store their methods in different modules and there is at least one
overridden method then two things can happen:
1\. I get the Warning: use {.base.} for base methods; baseless methods are
deprecated message or
2\. if I import O1's module into O2's module then I get this: Warning: imported
and not used: 'O1'
One of the warnings needs to go and I think the "baseless methods are
deprecated" messages are really annoying.
