*** Access the static method via base class *** PASSED!
BaseClass.echo('hello') PASSED!
*** Access the static method via sub class using unadorned method call *** PASSED!
obj.callEcho('world') PASSED!
*** Access the static method via sub class using base class method call *** PASSED!
obj.callBaseEcho('here') PASSED!
