http://www.perlmonks.org?node_id=969057


in reply to Re: Blessing tied hash
in thread Blessing tied hash

I agree $tied_object and $instance are two separate objects. Though the following:
bless \%hash, MyOtherClass;
makes \%hash blessed into MyOtherClass, I don't think $tied_object blessed into the same class at the same time. In fact,
ref $tied_object
returns 'MyClass'.