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


in reply to Aliasing one hash to another

Data::Alias should actually work fine...

alias local %problemClassProps = %MEClassProps;

This has the benefit of only localizing %problemClassProps, not all of *problemClassProps like Roy's solution.