##
##OLD $self->{sub_passed_to_child}( $self->{parent_obj_ref} );
$self->{sub_passed_to_child}->( $self ); ##New, explicitly de-ref the sub
####
sub passed_sub {
print "yes in passed_sub\n";
my ($child) = @_; # I don't like using shift here..
print $child->{parent_obj_ref}{test_att}; # 3