Subject: | (Query) Is UNIVERSAL::can generating spurious warnings for autobox.pm? |
More a query than a bug per se... but might be a bug.
The module autobox.pm (v2.55) has these lines at line 105, 106:
*{"$class\::can"} = sub { shift; UNIVERSAL::can($class, @_) } \
unless (*{"$class\::can"}{CODE});
*{"$class\::isa"} = sub { shift; UNIVERSAL::isa($class, @_) } \
unless (*{"$class\::isa"}{CODE});
I raised a ticket against autobox (see RT #49273) but now I'm wondering
if autobox is actually trying to do the right thing(?). Beyond my Perl
I'm afraid.