Message-Id: <
1209915605-11248-1-git-send-email-rafl@debian.org>
p4raw-id: //depot/perl@33789
In simple cases, it is equivalent to:
- $self->next::method(@_) if $self->next_can;
+ $self->next::method(@_) if $self->next::can;
But there are some cases where only this solution
works (like C<goto &maybe::next::method>);