You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
subroutine redefinitions made with local() shouldn't warn
The following code will no longer warn:
use warnings 'redefine';
sub foo {}
local *foo = sub{};
The main purpose of local() is to temporarily redefine stuff, so it
doesn't make sense to warn about it.
0 commit comments