in reply to Re: OO Simple THing
in thread OO Simple THing

ITYM $self->{"_$_"}. What you've got compiles into $self->{$_->_}.

$ perl -MO=Deparse -e 'print $self->{_$_};' print $$self{$_->_};