in reply to Re: Detecting Overridden Methodsin thread Detecting Overridden Methods
for my $i (@A::ISA) { for (qw(foo bar baz)) { print "$_: " .(A->can($_) == $i->can($_) ? " same" : " overwritten") ."\n"; } } [download]