Subject: | POD failure in $_[OBJECT] documentation |
The POD for $_[OBJECT] in POE::Session says:
You may also use method inheritance. Here we invoke
$self->a_method(@_). Since Perl's C<<->>> operator unshifts $self
onto the beginning of @_, we must first shift a copy off to maintain
POE's parameter offsets:
The problem here is C<<->>>, which is equivalent to C<E<lt>->E<gt>E<gt>
(that is, it renders as "<-">> instead of "->").
Solution: Use C<< -> >> (with spaces!) or C<-E<gt>> instead.